| 
					
				 | 
			
			
				@@ -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 '生成hr zip包' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      from outputdir 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      include 'nckd-jxccl-hr*.jar' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      destinationDirectory = file(zip) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      archiveFileName = "nckd-hr.zip" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 	  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 	test.ignoreFailures true 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 	 
			 |