mirror of
https://github.com/AppleCommander/AppleCommander.git
synced 2025-02-06 06:30:20 +00:00
Add jarsigner task to build.xml; see comments.
This commit is contained in:
parent
f726c3bfca
commit
0db3f17ca5
@ -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">
|
||||
|
Loading…
x
Reference in New Issue
Block a user