[Patchanim-commit] SF.net SVN: patchanim: [11] trunk/patchanim/build.xml
Brought to you by:
dbrosius
|
From: <dbr...@us...> - 2008-01-25 05:23:48
|
Revision: 11
http://patchanim.svn.sourceforge.net/patchanim/?rev=11&view=rev
Author: dbrosius
Date: 2008-01-24 21:23:54 -0800 (Thu, 24 Jan 2008)
Log Message:
-----------
add jar signing to jar task
Modified Paths:
--------------
trunk/patchanim/build.xml
Modified: trunk/patchanim/build.xml
===================================================================
--- trunk/patchanim/build.xml 2008-01-25 05:16:39 UTC (rev 10)
+++ trunk/patchanim/build.xml 2008-01-25 05:23:54 UTC (rev 11)
@@ -80,7 +80,14 @@
<attribute name="patchanim-version" value="${patchanim.version}"/>
<attribute name="Main-Class" value="com.mebigfatguy.patchanim.main.PatchMain"/>
</manifest>
- </jar>
+ </jar>
+ <input message="Enter keystore password" addproperty="pass"/>
+ <signjar jar="${basedir}/patchanim-${patchanim.version}.jar"
+ keystore="patchanim.store"
+ alias="patchanim"
+ keypass="${pass}"
+ storepass="${pass}"/>
+
</target>
<target name="srczip" description="builds the source distribution zip file">
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|