From: <sta...@us...> - 2007-02-27 23:59:27
|
Revision: 1525 http://archive-access.svn.sourceforge.net/archive-access/?rev=1525&view=rev Author: stack-sf Date: 2007-02-27 15:59:28 -0800 (Tue, 27 Feb 2007) Log Message: ----------- * pom.xml Do explicit build of plugins in here. * build.xml Don't depend on compile and plugins. Was double-running compile. Modified Paths: -------------- trunk/archive-access/projects/nutchwax/build.xml trunk/archive-access/projects/nutchwax/pom.xml Modified: trunk/archive-access/projects/nutchwax/build.xml =================================================================== --- trunk/archive-access/projects/nutchwax/build.xml 2007-02-27 23:42:50 UTC (rev 1524) +++ trunk/archive-access/projects/nutchwax/build.xml 2007-02-27 23:59:28 UTC (rev 1525) @@ -69,15 +69,13 @@ <property name="build.compiler" value="extJavac" /> </ant> </target> - <target name="third.party.jar" description="Build third-party jars" - depends="third.party.compile,third.party.plugins"> + <target name="third.party.jar" description="Build third-party jars" > <echo message="Building nutch third-party dependency (jar)" /> <ant dir="third-party/nutch" target="jar" inheritAll="false" > <property name="build.compiler" value="extJavac" /> </ant> </target> - <target name="third.party.war" description="Build third-party wars" - depends="third.party.plugins"> + <target name="third.party.war" description="Build third-party wars" > <echo message="Building nutch third-party dependency (war)" /> <ant dir="third-party/nutch" target="war" inheritAll="false" > <property name="build.compiler" value="extJavac" /> Modified: trunk/archive-access/projects/nutchwax/pom.xml =================================================================== --- trunk/archive-access/projects/nutchwax/pom.xml 2007-02-27 23:42:50 UTC (rev 1524) +++ trunk/archive-access/projects/nutchwax/pom.xml 2007-02-27 23:59:28 UTC (rev 1525) @@ -228,8 +228,10 @@ <phase>compile</phase> <configuration> <tasks> + <!-- Make these conditional so do not run everytime--> <echo>Compiling third.party dependencies and nutchwax</echo> <ant target="third.party.jar"/> + <ant target="third.party.plugins"/> </tasks> </configuration> <goals> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |