Add jarsigner task to build.xml; see comments.

This commit is contained in:
John B. Matthews 2008-06-06 21:41:06 +00:00
parent f726c3bfca
commit 0db3f17ca5
1 changed files with 9 additions and 1 deletions

View File

@ -65,7 +65,15 @@
</target>
<target name="jars" depends="init,executableGuiJar,executableCmdJar" description="Build executable jars">
<!-- Nothing else to do - depends handles it all. -->
<!-- In ACBuild.properties => keyconf=${user.home}/.secret alias=name -->
<!-- See man keytool, http://java.sun.com/j2se/1.5.0/docs/tooldocs/ -->
<loadfile srcfile="${keyconf}" property="password"/>
<signjar alias="${alias}" storepass="${password}">
<fileset dir="${basedir}">
<include name="${cmdjar}"/>
<include name="${guijar}"/>
</fileset>
</signjar>
</target>
<target name="executableGuiJar" depends="init" description="Build GUI executable JAR">