From: <jsa...@us...> - 2009-02-16 21:04:56
|
Revision: 137 http://flexotask.svn.sourceforge.net/flexotask/?rev=137&view=rev Author: jsauerbach Date: 2009-02-16 21:04:53 +0000 (Mon, 16 Feb 2009) Log Message: ----------- get rid of extra-clean as the whole philosophy of the build is different now but this script is still useful and will still be maintained Modified Paths: -------------- trunk/flexotask-features/feature-build.xml Modified: trunk/flexotask-features/feature-build.xml =================================================================== --- trunk/flexotask-features/feature-build.xml 2009-02-16 21:04:01 UTC (rev 136) +++ trunk/flexotask-features/feature-build.xml 2009-02-16 21:04:53 UTC (rev 137) @@ -4,10 +4,8 @@ 'extra.features'. The script uses the pde.ExportFeatures ant task, which runs asynchronously. No target can execute after the feature_export target in this script and new scripts cannot be run until the PDE Export operation is complete as shown by the icon on the lower right of the - eclipse window. You can also list files to be removed prior to export by listing them in 'extra.clean.' - Use of this script is not essential ... the standard PDE feature export wizard will work on this - project but any other features to be exported and any files to be cleaned on a preliminary basis - must then be done manually. + eclipse window. Use of this script is not essential ... the standard PDE feature export wizard + will work on this but any other features to be exported must then be done manually. --> <target name="setproperties"> <loadfile property="extra.features" srcfile="extra.features" failonerror="false"> @@ -18,22 +16,8 @@ </filterchain> </loadfile> <property name="extra.features" value=""/> - <loadfile property="extra.clean" srcfile="extra.clean" failonerror="false"/> - <property name="extra.clean" value=""/> <property name="flexotask.features" value="com.ibm.realtime.flexotask.feature${extra.features}"/> <echo message="Building features: ${flexotask.features}"/> - <property name="flexotask.clean" value=" - ../flexotask/flexotask.jar - ../flexotask/flexotasksrc.zip - ../flexotask-development/flexotaskdev.jar - ../flexotask-development/flexotaskdevsrc.zip - ../flexotask-editor/flexotaskEditor.jar - ../flexotask-editor/flexotaskEditorsrc.zip - ../flexotask-generic/flexotaskGeneric.jar - ../flexotask-generic/flexotaskGenericsrc.zip - ../realtime-analysis/realtimeAnalysis.jar - ../realtime-analysis/realtimeAnalysissrc.zip - ${extra.clean}"/> </target> <target name="feature_export" depends="clean,setproperties"> <pde.exportFeatures destination="latest-build" exportType="directory" @@ -42,9 +26,5 @@ <target name="clean" depends="setproperties"> <delete dir="latest-build"/> <mkdir dir="latest-build"/> - <delete verbose="true"> - <!-- The following ensures that this build is not contaminated by previous partial builds or copy-backs --> - <filelist dir="." files="${flexotask.clean}"/> - </delete> </target> </project> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |