aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Rushforth <[email protected]>2007-05-29 23:56:14 +0000
committerKevin Rushforth <[email protected]>2007-05-29 23:56:14 +0000
commitd55603394af3b83db5bb431c575b5b0cfe10b445 (patch)
tree34a8b27231d1cdee5270270e8ae646c366faba4f
parent40268679118ccce888ddba29f23512535dd06b19 (diff)
Run signing script from "dist-common" target for milestone builds
git-svn-id: https://svn.java.net/svn/j3d-core~svn/trunk@847 ba19aa83-45c5-6ac9-afd3-db810772062c
-rw-r--r--src/classes/build.xml12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/classes/build.xml b/src/classes/build.xml
index f70b6cf..8ccbc7b 100644
--- a/src/classes/build.xml
+++ b/src/classes/build.xml
@@ -333,7 +333,7 @@
<target name="docs" depends="docs-jcp,docs-public,docs-private"/>
- <target name="dist-common">
+ <target name="dist-common-jar">
<!-- Create the distribution directory -->
<mkdir dir="${dist}/common/lib/ext"/>
@@ -356,6 +356,16 @@
</copy>
</target>
+
+ <target name="dist-common-sign" if="releaseType_milestone">
+ <property name="staging" location="../../staging"/>
+ <exec dir="${dist}/common/lib/ext" executable="${shell}">
+ <arg line="${staging}/doSignJars.sh *.jar"/>
+ </exec>
+ </target>
+
+ <target name="dist-common" depends="dist-common-jar,dist-common-sign">
+ </target>
<target name="dist">
<!-- Create the distribution directory -->