My lazy header ...

AntDoc
Target antdoc.ant.1.5.jar.sign

antdoc.ant.1.5.jar.sign
  |
  +--init

Signs the Ant jar files specific to Ant V1.5 with Sun certificate

The saxon.jar and jdom.jar must be present in the Ant lib directory!

Detail:
<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>

... is just like my footer!

Edouard Mercier 2003.12.08 20:31:08 - AntDoc V0.8h - XSL Transformer Factory: com.icl.saxon.TransformerFactoryImpl