0

簡単な質問で申し訳ありません。私は ant が初めてで、jar ファイルを作成しようとしています。私はファイルを持っています

jaxb.in​​dex

パッケージ構造の内部

com/mycom/mg/アダプター

を使用して、このファイルを jar にパッケージ化しようとしています

<target name="dist" description="Create distributable jar file">
   <jar destfile="${common.lib.dir}/${dist.file}">
      <fileset dir="${build.classes.dir}"/>
      <zipfileset  
            file="${sms.syn.dir}/jaxb.index">
      </zipfileset>
  </jar>
</target>

同じパッケージ com/mycom/mg/adapter に jaxb.in​​dex ファイルが必要ですが、上記のコードを使用すると、ant によって jar のルートに追加されます。誰でも私を助けることができますか?

使用して編集

<zipfileset  
            file="${sms.syn.dir}/jaxb.index" fullpath="com/mycom/mg/adapter">
</zipfileset>

どちらも助けません。

4

2 に答える 2