Browse Source

更新 'build.gradle'

turborao 1 tháng trước cách đây
mục cha
commit
fc540c30c6
1 tập tin đã thay đổi với 10 bổ sung0 xóa
  1. 10 0
      build.gradle

+ 10 - 0
build.gradle

@@ -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