My lazy header ...

AntDocGUI
Target antdocgui.idea.plugin.deploy

antdocgui.idea.plugin.deploy

Deploys the IDEA plugin for AntDocGUI. Edit this file or overload IDEA_HOME_PATH in order to deploy the plugin

This target is necessary in order to deploy AntDocGUI in IDEA. Once you've run this target, restart IDEA if necessary and you will get AntDocGUI integrated to the wonderful IDEA!

Detail:
<target
	description="Deploys the IDEA plugin for AntDocGUI. Edit this file or overload IDEA_HOME_PATH in order to deploy the plugin"
	name="antdocgui.idea.plugin.deploy"
>

	<property
		location="F:\win32app\Programming\IDEA642"
		name="IDEA_HOME_PATH"
	/>

	<property
		location="${IDEA_HOME_PATH}/plugins"
		name="IDEA_PLUGIN_PATH"
	/>

	<property
		location="${IDEA_PLUGIN_PATH}/antdoc.tmp"
		name="TEMPORARY_IDEA_DIST_DIRECTORY_PATH"
	/>

	<property
		location="${IDEA_PLUGIN_PATH}/AntDocIDEA.jar"
		name="ANTDOC_IDEAPLUGIN_JAR"
	/>

	<mkdir dir="${TEMPORARY_IDEA_DIST_DIRECTORY_PATH}"/>

	<unjar
		dest="${TEMPORARY_IDEA_DIST_DIRECTORY_PATH}"
		src="${ant.home}/lib/saxon.jar"
	/>
	<--unjar
                        			src="${ant.home}/lib/jdom.jar"
                        			dest="${TEMPORARY_IDEA_DIST_DIRECTORY_PATH}"
                        		/-->

	<unjar
		dest="${TEMPORARY_IDEA_DIST_DIRECTORY_PATH}"
		src="${ant.home}/lib/AntDoc.jar"
	/>

	<delete file="${TEMPORARY_IDEA_DIST_DIRECTORY_PATH}/META-INF/AntDoc.dsa"/>

	<delete file="${TEMPORARY_IDEA_DIST_DIRECTORY_PATH}/META-INF/AntDoc.sf"/>

	<delete file="${ANTDOC_IDEAPLUGIN_JAR}"/>

	<jar jarfile="${ANTDOC_IDEAPLUGIN_JAR}">
		<fileset dir="${TEMPORARY_IDEA_DIST_DIRECTORY_PATH}">
			<include name="**/*"/>
		</fileset>
	</jar>

	<delete dir="${TEMPORARY_IDEA_DIST_DIRECTORY_PATH}"/>
</target>

... is just like my footer!

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