私はアリと日食を使って簡単な在庫プログラムの瓶を作ろうとしています。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>