我已经制作了一个正在运行的程序,它是IntelliJ IDEA中的计算器并进行测试,它很好。我的问题是如何设置ANT文件来创建一个计算器的JAVA JAR。
希望得到答案..
TNX。
答案 0 :(得分:0)
这是一个创建jar的蚂蚁目标的例子。
<!-- roll up everyting into a single jar file -->
<target name="dist" depends="clean, compile" description="Generate the distribution file.">
<!--
Copy the library .jars to the directory where the distribution will be located
-->
<copy todir="${dist}">
<fileset dir="${lib}"/>
</copy>
<!-- TODO: Generate the MANIFEST.MF file on the fly -->
<jar jarfile="${dist}/myCalculator.jar" basedir="${build}" manifest="tools/MANIFEST.MF"/>
<!-- dump to web server -->
<copy todir="${web-files}">
<fileset dir="${dist}"/>
</copy>
</target>
答案 1 :(得分:0)
看看Ant manual page for the Jar task。那里有很多例子。