diff options
author | endolf <[email protected]> | 2008-11-14 22:31:08 +0000 |
---|---|---|
committer | endolf <[email protected]> | 2008-11-14 22:31:08 +0000 |
commit | 10c2e694cc7016ed7a4a89b7f6232aeb31f71dea (patch) | |
tree | f8796e38aa2474dfdf87c10330937e20ef5ccb9a /applet/build.xml | |
parent | 45fbdfbf7c0ef9e1fd66c5e531aeff6f9e7f064e (diff) |
*** empty log message ***
git-svn-id: file:///home/sven/projects/JOGL/git-svn/svn-server-sync/jinput/trunk@213 e343933a-64c8-49c5-92b1-88f2ce3e89e8
Diffstat (limited to 'applet/build.xml')
-rw-r--r-- | applet/build.xml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/applet/build.xml b/applet/build.xml index 562a19f..f05355e 100644 --- a/applet/build.xml +++ b/applet/build.xml @@ -31,4 +31,14 @@ <fileset dir="../webstart/dist/"/> </copy> </target> + + <target name="sign" depends="jar"> + <input message="Input keystore alias: " addproperty="keystoreAlias"/> + <input message="Input keystore password: " addproperty="keystorePassword"/> + <signjar alias="${keystoreAlias}" keystore="../webstart/myKeyStore" storepass="${keystorePassword}" verbose="true"> + <fileset dir="dist"> + <include name="**/jinput-applet-test.jar"/> + </fileset> + </signjar> + </target> </project>
\ No newline at end of file |