使用Apache ANT编译java

时间:2012-11-23 10:03:00

标签: java ant build

如何使用Apache ANT使用JRE系统库和我拥有的其他库来编译java项目 我正在使用的代码是

<path id="master-classpath">
    <fileset dir="junit">
        <include name="*.jar"/>
    </fileset>
    <pathelement path="${build.dir}"/>
</path> 

<target name="build" description="Compile source tree java files">

    <mkdir dir="${build.dir}"/>
    <javac destdir="${build.dir}" source="1.5" target="1.5" includeantruntime="false">
        <src path="${src.dir}"/>
    <classpath refid="master-classpath"/>
    </javac>
</target>

它只接受junit文件夹中的jar文件 我不知道如何使用JRE系统库进行编译。

0 个答案:

没有答案