|
@@ -24,6 +24,7 @@ def bos = ext.path.bos
|
|
|
def trd = ext.path.trd
|
|
|
def cus = ext.path.cus
|
|
|
def biz = ext.path.biz
|
|
|
+def zip = ext.path.zip
|
|
|
def outputdir = ext.path.outputdir
|
|
|
|
|
|
//所有工程共用的配置
|
|
@@ -140,6 +141,15 @@ subprojects {
|
|
|
into cus
|
|
|
exclude '*sources.jar','*javadoc.jar','*cosmic-debug*.jar'
|
|
|
}
|
|
|
+
|
|
|
+ task basezip(type: Zip) {
|
|
|
+ group 'build'
|
|
|
+ description '生成base zip包'
|
|
|
+ from outputdir
|
|
|
+ include 'nckd-wnq01*.jar'
|
|
|
+ destinationDirectory = file(zip)
|
|
|
+ archiveFileName = "nckd-wnq01.zip"
|
|
|
+ }
|
|
|
|
|
|
test.ignoreFailures true
|
|
|
|