自己写的第一份build.xml

前端之家收集整理的这篇文章主要介绍了自己写的第一份build.xml前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<?xml version="1.0" encoding="utf-8" ?> <project name="cloudwave" default="all" basedir="."> <property name="build.src" value="./src/test/hdfs"/> <property name="build.dest" value="./buildDest"/> <property name="lib.dir" value="./build_lib"/> <property name="debug" value="on"/> <property name="optimize" value="on"/> <path id="classpath"> <pathelement path="${jsdk_jar}"/> <fileset dir="${lib.dir}"> <include name="**/*.jar"/> </fileset> </path> <target name="clean"> <delete dir="${build.dest}"/> <mkdir dir="${build.dest}"/> </target> <target name="compile" depends="clean" > <javac srcdir="${build.src}" destdir="${build.dest}" debug="${debug}" optimize="${optimize}"> <classpath refid="classpath"/> </javac> </target> <target name="server" depends="compile"> <jar jarfile="${build.dest}/HDFStest.jar" basedir="${build.dest}" includes="test/hdfs/*.class"> </jar> </target> <target name="all" depends="server"> </target> </project> 原文链接:https://www.f2er.com/xml/300539.html

猜你在找的XML相关文章