Tvorba modulu JAR

Tvorba modulu JAR je v podstatě jistý druh archivace.

<target name='jar.edip' depends='edip'
        description='Make the jar file'>
  <jar destfile='${jarfile}'
       basedir='build/edip'
       includes='**/*.class'
       manifest='${manifest.edip}'
       index='true'
       compress='true'/>
</target>

<target name='jar' depends='jar.edip'
        description='Compile everything'/>