利用ant自动从vss下载代码并编译到自动发布

阅读更多

 

利用ant自动从vss下载代码并编译到自动发布

分类: 计算机相关东西 1540人阅读 评论 (0) 收藏 举报
 项目做了好久,每次都要手工从vss下载代码,再编译,再发布,觉得好麻烦的,以前项目比较忙就没有时间来研究他,昨天无意在网上看到一个基于wls自 动发布过来,个人认为可以改下为我们所用了,由于自己以前对ant这些东西不是蛮了解,只好先硬着头皮到网上找些这方面的资料看看,我想应该比较容易搞定 的吧。
      搞清了ant的一些基本概率,就看看别人写的bulid.xml吧,再改改,试一试,唉,报错,再找到报错的日志,可能是配置文件中有汉字的缘故吧,删除这些注释的东西,再运行下ant,搞定!(基于tomcat发布的)
     如下是bulid.xml的详细列表;
   









 

       
 
         
 
   

       
 
         
 
   

       
 
         
 
   


 
 
  
 







ssdir="${vss.ssdir}" serverPath="${vss.svrdir}" autoresponse="Y" recursive="true" quiet="true" />



 
  
 



 


 
  
 

                includes="*_zh_CN.properties" excludes="*displaytag_zh_CN.properties" encoding="GB2312" />
                includes="*displaytag_zh_CN.properties" encoding="UTF-8" />       
   
  
   
   
  

 
 
  
                
                
        

 



   
       
   

   
  
 




   
   
   
   
   
   
  
 

   
  
 

       
    username="${tomcat.manager.username}"                
  password="${tomcat.manager.password}"                
  path="/${name}"/>   
       
    username="${tomcat.manager.username}"                
  password="${tomcat.manager.password}"                
  path="/${name}"/>   
       
    username="${tomcat.manager.username}"                
  password="${tomcat.manager.password}"                
  path="/${name}"/>   

少了一个文件build.properties的内容
# Ant properties for building the spring
user.home=D:/oaWorkspace
appappserver.home=${user.home}/jakarta-tomcat-5.5.9
deploy.path=${appserver.home}/webapps
tomcat.manager.url=http://127.0.0.1/manager
tomcat.manager.username=manager
tomcat.manager.password=tomcat

你可能感兴趣的:(vss)