patches and customization jars must be signed by RUN_setup to work

This commit is contained in:
Carlos Ruiz 2007-02-19 06:24:43 +00:00
parent dd28e556a3
commit 722867aec1
1 changed files with 12 additions and 0 deletions

View File

@ -138,6 +138,18 @@
<signjar jar="buildALib/Adempiere1.jar" alias="${ADEMPIERE_KEYSTORECODEALIAS}"
storepass="${ADEMPIERE_KEYSTOREPASS}" keystore="${ADEMPIERE_KEYSTORE}" />
<copy file="buildALib/Adempiere1.jar" tofile="lib/Adempiere.jar" overwrite="yes" />
<!-- Sign patches Jar -->
<copy file="lib/patches.jar" tofile="buildALib/patches1.jar" overwrite="yes" />
<signjar jar="buildALib/patches1.jar" alias="${ADEMPIERE_KEYSTORECODEALIAS}"
storepass="${ADEMPIERE_KEYSTOREPASS}" keystore="${ADEMPIERE_KEYSTORE}" />
<copy file="buildALib/patches1.jar" tofile="lib/patches.jar" overwrite="yes" />
<!-- Sign customization Jar -->
<copy file="lib/customization.jar" tofile="buildALib/customization1.jar" overwrite="yes" />
<signjar jar="buildALib/customization1.jar" alias="${ADEMPIERE_KEYSTORECODEALIAS}"
storepass="${ADEMPIERE_KEYSTOREPASS}" keystore="${ADEMPIERE_KEYSTORE}" />
<copy file="buildALib/customization1.jar" tofile="lib/customization.jar" overwrite="yes" />
<delete dir="buildALib" />
</target>