My lazy header ...

AntDoc
Target antdoc.ant.1.4.1.jar.sign

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

Signs the Ant jar files specific to Ant V1.4.1 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.4.1 with Sun certificate."
	if="ANT_1.4.1_USED"
	name="antdoc.ant.1.4.1.jar.sign"
>
	<copy toDir="${DISTRIBUTION_FULL_DIRECTORY_PATH}">
		<fileset dir="${ant.home}/lib">
			<include name="xerces.jar"/>

			<include name="jaxp.jar"/>
		</fileset>
	</copy>

	<signjar
		alias="AntDoc"
		jar="${DISTRIBUTION_FULL_DIRECTORY_PATH}/xerces.jar"
		keystore="${SUN_KEY_STORE_FILE_PATH}"
		storepass="${SUN_KEY_STORE_PASS}"
	/>

	<signjar
		alias="AntDoc"
		jar="${DISTRIBUTION_FULL_DIRECTORY_PATH}/jaxp.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