我正在尝试使用 ant 和 eclipse 制作一罐简单的库存程序。我已经构建了 xml 文件,但是我需要向 buildjar 目标添加一些内容,这将导致 ant 将 itemdatabase 文件(当前位于基本目录中)包含在 jar 中。到目前为止我所拥有的。
<target name="buildjar" depends="clean">
<jar jarfile="${build.dir}/StudioCat.jar">
<fileset dir="${basedir}">
<include name="config/*"/>
</fileset>
<fileset dir="${bin.dir}">
<include name="**/*.class"/>
</fileset>
<manifest>
<attribute name="Main-Class" value="presentation.CreateInventoryUI"/>
</manifest>
</jar>
<copy todir="${build.dir}">
<fileset dir="${basedir}">
<include name="config*/**/*"/>
</fileset>
</copy>
</target>