Details
-
Type:
New Feature
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 4.0.0
-
Fix Version/s: 4.3.1
-
Component/s: None
-
Labels:None
-
Number of attachments :
Description
Currently I have to install the ant script before the AntActionListener can call it
<!-- JBoss-4.2.2 -->
<pack name="Download JBoss-4.2.2" required="no" parent="Optional Downloads" preselected="no">
<description>Download and Install JBoss-4.2.2</description>
<file src="@{resources.dir}/installer/download-helper.xml" targetdir="$INSTALL_PATH/Uninstaller"/>
</pack>
<!-- Eclipse-3.4.0 -->
<pack name="Download Eclipse-3.4.0" required="no" parent="Optional Downloads" preselected="no">
<description>Download and Install Eclipse-3.4.0</description>
<file src="@{resources.dir}/installer/download-helper.xml" targetdir="$INSTALL_PATH/tmp"/>
</pack>
<antactions> <pack name="Download JBoss-4.2.2"> <antcall order="afterpack" buildfile="$INSTALL_PATH/Uninstaller/download-helper.xml"> <property name="install.path" value="$INSTALL_PATH"/> <target name="download-jboss"/> </antcall> </pack> <pack name="Download Eclipse-3.4.0"> <antcall order="afterpack" buildfile="$INSTALL_PATH/Uninstaller/download-helper.xml"> <property name="install.path" value="$INSTALL_PATH"/> <target name="download-eclipse"/> </antcall> </pack> </antactions>
I'd rather not have to install the download-helper.xml at all.
cheers
-thomas