Developers guide
137
classpathref="classpath"
srcdir="${src-dir}" >
<exclude name="apt/sp/**"/>
</javac>
<!-- copy the docs -->
<copy todir="${build-doc-dir}">
<fileset dir="${doc-dir}" />
</copy>
<!-- copy images used by the client gui -->
<copy todir="${build-classes-dir}">
<fileset dir="${src-dir}">
<include name="**/*.gif"/>
</fileset>
</copy>
</target>
<!-- ********** END COMPILE ********** -->
<!-- ********** DIST ********** -->
<target name="apt-jar"
depends="compile"
description="Create the apt jar file">
<jar jarfile="${apt.jarfile}"
basedir="${build-classes-dir}"/>
</target>
<target name="config-jar"
depends="init"
description="Create jar file that contains config files">
<jar jarfile="${apt.config.jarfile}"
basedir="${config-dir}" />
</target>
<target name="sign-jars" depends="config-jar,apt-jar" >
<echo>
Signing the jarfiles as ${keyalias} using keystore ${keystore}
This must be the same keystore and alias used to
sign all the jar files from the 'lib' module.
Webstart does not allow jars to be signed by different
users.
</echo>
<signjar jar="${apt.config.jarfile}"
alias="${keyalias}"
keypass="${keypass}"
storepass="${keystorepass}"
keystore="${keystore}" />
<signjar jar="${apt.jarfile}"
alias="${keyalias}"
keypass="${keypass}"
storepass="${keystorepass}"
keystore="${keystore}" />
</target>
<target name="source-tar.gz"
depends="init"
description="tar.gz up the source">
<tar tarfile="${apt.src.tar}" basedir="${src-dir}"/>
<gzip zipfile="${apt.src.tar.gz}" src="${apt.src.tar}"/>










