summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar jeff2015-01-24 15:51:36 -0500
committerGravatar jeff2015-01-24 15:51:36 -0500
commit1db85d556d36567bd65df59d9877387b892c2961 (patch)
tree9dd63f86b9bdac9872071b587c2c99efcdcee1fa
parentfinish build script (diff)
downloadenigma-1db85d556d36567bd65df59d9877387b892c2961.tar.gz
enigma-1db85d556d36567bd65df59d9877387b892c2961.tar.xz
enigma-1db85d556d36567bd65df59d9877387b892c2961.zip
don't deploy sources/javadoc of libs
-rw-r--r--build.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/build.py b/build.py
index 1349d1db..cc77c431 100644
--- a/build.py
+++ b/build.py
@@ -80,7 +80,8 @@ def taskBuild():
80 # make the main jar 80 # make the main jar
81 with ssjb.file.TempDir(DirTemp) as dirTemp: 81 with ssjb.file.TempDir(DirTemp) as dirTemp:
82 ssjb.file.copyTree(dirTemp, DirBin, ssjb.file.find(DirBin)) 82 ssjb.file.copyTree(dirTemp, DirBin, ssjb.file.find(DirBin))
83 ssjb.jar.unpackJar(dirTemp, os.path.join(DirLib, "deps.jar")) 83 for path in ssjb.ivy.getJarPaths(Deps, ExtraRepos):
84 ssjb.jar.unpackJar(dirTemp, path)
84 ssjb.file.delete(os.path.join(dirTemp, "LICENSE.txt")) 85 ssjb.file.delete(os.path.join(dirTemp, "LICENSE.txt"))
85 ssjb.file.delete(os.path.join(dirTemp, "META-INF/maven")) 86 ssjb.file.delete(os.path.join(dirTemp, "META-INF/maven"))
86 ssjb.file.copy(dirTemp, "license.APL2.txt") 87 ssjb.file.copy(dirTemp, "license.APL2.txt")