Skip to content

Commit

Permalink
Add make_csr target
Browse files Browse the repository at this point in the history
  • Loading branch information
bharat committed Feb 13, 2007
1 parent ae839c0 commit f442059
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions build.xml
Expand Up @@ -242,12 +242,12 @@
</tar>
</target>

<target name="upload"
<target name="upload"
description="Upload to SF.net">

<loadproperties srcfile="defaults.properties"/>

<move file="${install}/Windows/NoVM/InstallGalleryRemote.exe"
<move file="${install}/Windows/NoVM/InstallGalleryRemote.exe"
tofile="${install}/staging/GalleryRemote.${version}.Win32.NoVM.exe"/>
<move file="${install}/Windows/VM/InstallGalleryRemote.exe" tofile="${install}/staging/GalleryRemote.${version}.Win32.VM.exe"/>
<!--move file="${install}/MacOSX/InstallGalleryRemote.zip" tofile="${install}/staging/GalleryRemote.${version}.MacOSX.NoVM.zip"/-->
Expand All @@ -272,6 +272,12 @@ tofile="${install}/staging/GalleryRemote.${version}.Win32.NoVM.exe"/>
</exec>
</target>

<target name="make_csr" description="Create a Certificate Signing Request from a self-signed certificate">
<exec executable="keytool">
<arg line="-certreq -alias gallery -keyalg RSA -keypass gallery -storepass gallery -file gallery.csr" />
</exec>
</target>

<target name="nightly" depends="zip, installer_macosx, applet_zip"
description="Run all the tasks for a nightly build" />

Expand Down

0 comments on commit f442059

Please sign in to comment.