<target
depends="init"
description="Signs the Ant jar files specific to Ant V1.5 with Sun certificate"
name="antdoc.ant.1.5.jar.sign"
unless="ANT_1.4.1_USED"
>
<copy toDir="${DISTRIBUTION_FULL_DIRECTORY_PATH}">
<fileset dir="${ant.home}/lib">
<include name="xercesImpl.jar"/>
<include name="xml-apis.jar"/>
</fileset>
</copy>
<signjar
alias="AntDoc"
jar="${DISTRIBUTION_FULL_DIRECTORY_PATH}/xercesImpl.jar"
keystore="${SUN_KEY_STORE_FILE_PATH}"
storepass="${SUN_KEY_STORE_PASS}"
/>
<signjar
alias="AntDoc"
jar="${DISTRIBUTION_FULL_DIRECTORY_PATH}/xml-apis.jar"
keystore="${SUN_KEY_STORE_FILE_PATH}"
storepass="${SUN_KEY_STORE_PASS}"
/>
</target>
|