首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 互联网 >

Ant调度文件

2012-07-01 
Ant部署文件?xml version1.0?project nameweblogic ant task defaultmain !-- Eclipse工作

Ant部署文件

<?xml version="1.0"?><project name="weblogic ant task" default="main" ><!-- Eclipse工作空间路径 --><property name="source" value="D:/workspace myeclipse" /><!-- Tomcat项目路径 --><property name="shshop" value="D:/apache-tomcat-6.0.35/webapps/shshop" /><property name="besttone" value="D:/apache-tomcat-6.0.35/webapps/besttone" /><target name="detect.file"><condition property="shshopExist"><and><available file="${shshop}" /></and></condition><condition property="besttoneExist"><and><available file="${besttone}" /></and></condition></target><target name="build shshop" if="shshopExist" depends="detect.file"><copy todir="${shshop}"><fileset dir="${source}/Common/WebRoot" /></copy><echo message="shshop success" /></target><target name="build besttone" if="besttoneExist" depends="detect.file"><copy todir="${besttone}"><fileset dir="${source}/Common/WebRoot" /></copy><echo message="besttone success" /></target><target name="main"><antcall target="build shshop" /><antcall target="build besttone" /></target></project>
?

热点排行