[Japi-cvs] SF.net SVN: japi:[1183] common/trunk/commonBuild.xml
Status: Beta
Brought to you by:
christianhujer
From: <chr...@us...> - 2009-02-24 08:41:13
|
Revision: 1183 http://japi.svn.sourceforge.net/japi/?rev=1183&view=rev Author: christianhujer Date: 2009-02-24 08:41:08 +0000 (Tue, 24 Feb 2009) Log Message: ----------- Fixed bug - can't define downloaded tasks on top-level before download. Modified Paths: -------------- common/trunk/commonBuild.xml Modified: common/trunk/commonBuild.xml =================================================================== --- common/trunk/commonBuild.xml 2009-02-24 08:34:56 UTC (rev 1182) +++ common/trunk/commonBuild.xml 2009-02-24 08:41:08 UTC (rev 1183) @@ -90,10 +90,6 @@ <available property="hasPack200" file="${commonPath}/antlib.auto/Pack200Task.jar" /> <available property="hasTaglets" file="${commonPath}/antlib.auto/japi-lib-taglets.jar" /> -<taskdef name="freshmeat" classpath="${commonPath}/antlib.auto/antmeat.jar" classname="de.frewert.ant.freshmeat.Announcement" /> -<taskdef name="pack200" classpath="${commonPath}/antlib.auto/Pack200Task.jar" classname="com.sun.tools.apache.ant.pack200.Pack200Task" /> -<taskdef name="unpack200" classpath="${commonPath}/antlib.auto/Pack200Task.jar" classname="com.sun.tools.apache.ant.pack200.Unpack200Task" /> - <!-- targets are sorted alphabetically. --> <target @@ -125,6 +121,7 @@ description = "announce new version on freshmeat.net" depends = "getAntmeat" > + <taskdef name="freshmeat" classpath="${commonPath}/antlib.auto/antmeat.jar" classname="de.frewert.ant.freshmeat.Announcement" /> <echo>Announcing. Press return to start announcing this release at FreshMeat.</echo> <input /> <echo><![CDATA[ @@ -268,6 +265,9 @@ description = "Creates and packs distribution archives." depends = "clean, compile, test, doc, build, getPack200" > + <taskdef name="pack200" classpath="${commonPath}/antlib.auto/Pack200Task.jar" classname="com.sun.tools.apache.ant.pack200.Pack200Task" /> + <taskdef name="unpack200" classpath="${commonPath}/antlib.auto/Pack200Task.jar" classname="com.sun.tools.apache.ant.pack200.Unpack200Task" /> + <mkdir dir="dist" /> <parallel> <tar tarfile="${distPath}.src.tar" longfile="gnu"> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |