build.xml build.xml标签

ANT-build.xml文件详解Ant之build.xml详解build.xml-----------------------------------------------------------------------------<?xml version="1.0"encoding="UTF-8"?><project basedir=".." default="war"name="struts"><property name="src.dir" value="${basedir}src"/><property name="lib.dir"value="${basedir}webRootWEB-INFlib" /><property name="webapp.dir"value="${basedir}webRoot" /><property name="build.src"value="${basedir}src" /><property name="build.dest"value="${basedir}WebRootWEB-INFclasses" /><property name="buildwar.dest"value="${basedir}webRoot" /><property name="war.file"value="${basedir}buildssh.war" />

<path id="classpath_id"><fileset dir="${lib.dir}"><include name="**/*.jar"/></fileset><pathelementpath="${classpath}"></pathelement></path>
<target name="delete"><echo>"根目录是:"+${basedir}</echo> <echo>"webapp.dir是:"+${webapp.dir}</echo><echo>删除Classes目录下面的无用文件</echo><deletedir="${build.dest}"></delete><echo>清除完毕</echo></target>
<target name="init"depends="delete"><echomessage="开始初使化${src.dir}"></echo></target>
build.xml build.xml标签
<target name="compile" depends="init"description="compile the source file"><echo>开始编译java文件</echo><mkdir dir="${build.dest}"/><echo>编译文件</echo><javac encoding="UTF-8" srcdir="${src.dir}"destdir="${build.dest}"><classpath refid="classpath_id"/></javac><echo>编译java文件结束,准备转移后缀不为.jar文件</echo><copytodir="${build.dest}"><fileset dir="${src.dir}"includes="*.properties,*.xml,*.cfg,*.dat"excludes="*.java"></fileset></copy><echo>转移后缀不为.jar文件结束</echo></target><target name="war"depends="compile"><description> 开始打包</description><war warfile="${war.file}"webxml="${webapp.dir}/WEB-INF/web.xml"><!-- <lib dir="${lib.dir}"/> --><!--classes dir="${WEB.dir}/classes"/--><fileset dir="${buildwar.dest}"/></war></target>
</project>

  

爱华网本文地址 » http://www.aihuau.com/a/25101016/297154.html

更多阅读

php文件怎么打开? 种子php文件怎么打开

简介很多没有做过网页的都不知道php文件是什么样的文件,今天小编过来跟大家说一下php文件是什么样的文件吧,其实PHP是一个网页脚本,但不同于html xml 标签语言,直接可以通过浏览器打开,需要有PHP的运行环境才可以访问和打开文件,如果只

C#:XML操作类

写的一个XML操作类,包括读取/插入/修改/删除。using System;using System.Data;using System.Configuration;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebCo

Dom4j解析和生成XML文档 dom4j解析xml字符串

原创作品,允许转载,转载时请务必以超链接形式标明文章 原始出处 、作者信息和本人声明。否则将追究法律责任。作者:永恒の_☆ 地址:http://blog.csdn.net/chenghui0317/article/details/11486271一、前言dom4j是一套非常优秀的java开源a

声明:《build.xml build.xml标签》为网友六弦绿漪分享!如侵犯到您的合法权益请联系我们删除