Ant 构建 打包 发布

阅读更多
Ant
一.简介
Ant,构建,打包,编译自动化工具。
二.下载地址
http://ant.apache.org/
三.例子

Ant 构建 打包 发布_第1张图片
图1.1 项目架构

#project name
app.NAME=OWNUSESYSTEM
app.name=OwnUseSystem

#tomcat home
tomcat.dir=D:/software/apache-tomcat-7.0.29-windows-x64/apache-tomcat-7.0.29

#compile path
build.dir=build
build.classes.dir=${build.dir}/classes

#source code path
source.dir=src
#config path
resource.dir=config
#output file
log.file=D:/ming.txt
#java path
java.lib.dir=C:/Program Files (x86)/Java/jdk1.6.0_13/jre/lib
#WebContent path
WebContent.dir=WebContent
WebContent.WebInf.dir=${WebContent.dir}/WEB-INF
WebContent.DB.dir=${WebContent.dir}/DB
WebContent.WebInf.classes.dir=${WebContent.WebInf.dir}/classes
WebContent.WebInf.lib.dir=${WebContent.WebInf.dir}/lib

#dist 
dist.dir=ming
dist.db.dir=${dist.dir}/db

#sqlserver configuration 
sqlserver.dbname=owern
sqlserver.username=sa
sqlserver.password=123



    
	
		   
		       
		   
		   
		       
		   
		   
	
	
		
		
		
		
		
		
	
	
		
			
			    
			    
			    
			 
		
		
			
			    
			
	    
		
		
		
	
	
		
		      
		 
		 
			  
			    
			  
		 
		 
		             
		             
		 
	
	
		 
		    
		 
	
	
		
		
		      
		
	
    
    	
    	   
    	                 
    	               
    	                  
    	   
    
    
    	
        
    	
        
    	
    	
    	
    


  • Ant 构建 打包 发布_第2张图片
  • 大小: 42.1 KB
  • 查看图片附件

你可能感兴趣的:(ant,JVM)