From: <sta...@us...> - 2007-04-06 20:42:37
|
Revision: 1705 http://archive-access.svn.sourceforge.net/archive-access/?rev=1705&view=rev Author: stack-sf Date: 2007-04-06 13:42:38 -0700 (Fri, 06 Apr 2007) Log Message: ----------- Move m2'ing moving src and plugins to m2 expected locations Modified Paths: -------------- trunk/archive-access/projects/nutchwax/nutchwax-plugins/pom.xml Added Paths: ----------- trunk/archive-access/projects/nutchwax/nutchwax-core/src/ trunk/archive-access/projects/nutchwax/nutchwax-core/src/main/ trunk/archive-access/projects/nutchwax/nutchwax-core/src/main/java/ trunk/archive-access/projects/nutchwax/nutchwax-plugins/src/ trunk/archive-access/projects/nutchwax/nutchwax-plugins/src/main/ trunk/archive-access/projects/nutchwax/nutchwax-plugins/src/main/plugin/ Removed Paths: ------------- trunk/archive-access/projects/nutchwax/src/java/ trunk/archive-access/projects/nutchwax/src/plugin/ Copied: trunk/archive-access/projects/nutchwax/nutchwax-core/src/main/java (from rev 1704, trunk/archive-access/projects/nutchwax/src/java) Modified: trunk/archive-access/projects/nutchwax/nutchwax-plugins/pom.xml =================================================================== --- trunk/archive-access/projects/nutchwax/nutchwax-plugins/pom.xml 2007-04-06 19:49:00 UTC (rev 1704) +++ trunk/archive-access/projects/nutchwax/nutchwax-plugins/pom.xml 2007-04-06 20:42:38 UTC (rev 1705) @@ -33,35 +33,35 @@ at the maven dependencies when we go to compile. --> <echo>Compiling plugins</echo> - <ant dir="../src/plugin/index-wax" target="deploy" inheritAll="false" + <ant dir="src/plugin/index-wax" target="deploy" inheritAll="false" inheritRefs="true"> <property name="build.compiler" value="extJavac" /> </ant> - <ant dir="../src/plugin/query-wax" target="deploy" inheritAll="false" + <ant dir="src/plugin/query-wax" target="deploy" inheritAll="false" inheritRefs="true"> <property name="build.compiler" value="extJavac" /> </ant> - <ant dir="../src/plugin/parse-default" target="deploy" inheritAll="false" + <ant dir="src/plugin/parse-default" target="deploy" inheritAll="false" inheritRefs="true"> <property name="build.compiler" value="extJavac" /> </ant> - <ant dir="../src/plugin/parse-waxext" target="deploy" inheritAll="false" + <ant dir="src/plugin/parse-waxext" target="deploy" inheritAll="false" inheritRefs="true"> <property name="build.compiler" value="extJavac" /> </ant> - <ant dir="../src/plugin/query-host" target="deploy" inheritAll="false" + <ant dir="src/plugin/query-host" target="deploy" inheritAll="false" inheritRefs="true"> <property name="build.compiler" value="extJavac" /> </ant> - <ant dir="../src/plugin/query-anchor" target="deploy" inheritAll="false" + <ant dir="src/plugin/query-anchor" target="deploy" inheritAll="false" inheritRefs="true"> <property name="build.compiler" value="extJavac" /> </ant> - <ant dir="../src/plugin/query-title" target="deploy" inheritAll="false" + <ant dir="src/plugin/query-title" target="deploy" inheritAll="false" inheritRefs="true"> <property name="build.compiler" value="extJavac" /> </ant> - <ant dir="../src/plugin/query-content" target="deploy" inheritAll="false" + <ant dir="src/plugin/query-content" target="deploy" inheritAll="false" inheritRefs="true"> <property name="build.compiler" value="extJavac" /> </ant> @@ -81,29 +81,29 @@ we can invoke it from eclipse. --> <echo>Cleaning plugins</echo> - <ant dir="../src/plugin/index-wax" target="clean" inheritAll="false" + <ant dir="src/plugin/index-wax" target="clean" inheritAll="false" inheritRefs="true"> <property name="build.compiler" value="extJavac" /> </ant> - <ant dir="../src/plugin/query-wax" target="clean" inheritAll="false"> + <ant dir="src/plugin/query-wax" target="clean" inheritAll="false"> <property name="build.compiler" value="extJavac" /> </ant> - <ant dir="../src/plugin/parse-default" target="clean" inheritAll="false"> + <ant dir="src/plugin/parse-default" target="clean" inheritAll="false"> <property name="build.compiler" value="extJavac" /> </ant> - <ant dir="../src/plugin/parse-waxext" target="clean" inheritAll="false"> + <ant dir="src/plugin/parse-waxext" target="clean" inheritAll="false"> <property name="build.compiler" value="extJavac" /> </ant> - <ant dir="../src/plugin/query-host" target="clean" inheritAll="false"> + <ant dir="src/plugin/query-host" target="clean" inheritAll="false"> <property name="build.compiler" value="extJavac" /> </ant> - <ant dir="../src/plugin/query-anchor" target="clean" inheritAll="false"> + <ant dir="src/plugin/query-anchor" target="clean" inheritAll="false"> <property name="build.compiler" value="extJavac" /> </ant> - <ant dir="../src/plugin/query-title" target="clean" inheritAll="false"> + <ant dir="src/plugin/query-title" target="clean" inheritAll="false"> <property name="build.compiler" value="extJavac" /> </ant> - <ant dir="../src/plugin/query-content" target="clean" inheritAll="false"> + <ant dir="src/plugin/query-content" target="clean" inheritAll="false"> <property name="build.compiler" value="extJavac" /> </ant> </tasks> Copied: trunk/archive-access/projects/nutchwax/nutchwax-plugins/src/main/plugin (from rev 1704, trunk/archive-access/projects/nutchwax/src/plugin) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |