ant多项目打包,Ant多个项目批量打包方法

1.下载 ant-contrib,解压 把ant-contrib.jar放在%ANT_HOME%\lib目录下

     在Ant的核心包里没有相关的For循环的Task,要下载相应的扩展包。可以使用开源的Ant-contrib包。下载地址:http://ant-contrib.sourceforge.net/

2.build.xml(关键的是foreach 和 taskdef标签)




	
    
	
    
    
    
	
    
    
    
            
                
            
    
    
            
            
    		
    		
    			
    				
    			
    		
    		
    	  	
    	
		  	
   
  

3.ant.properties


packList = xxxx1,xxx2,xxxx3

参考:http://www.cnblogs.com/100fighting/p/3160505.html

       http://www.tuicool.com/articles/E7nyAbI


你可能感兴趣的:(ant,java,打包,项目管理)