You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by rm...@apache.org on 2012/04/15 15:30:21 UTC

svn commit: r1326329 - in /lucene/dev/trunk: lucene/contrib/demo/build.xml lucene/module-build.xml modules/analysis/kuromoji/build.xml modules/benchmark/build.xml modules/join/build.xml

Author: rmuir
Date: Sun Apr 15 13:30:20 2012
New Revision: 1326329

URL: http://svn.apache.org/viewvc?rev=1326329&view=rev
Log:
LUCENE-3965: contrib-build -> modules-build (project-name)

Modified:
    lucene/dev/trunk/lucene/contrib/demo/build.xml
    lucene/dev/trunk/lucene/module-build.xml
    lucene/dev/trunk/modules/analysis/kuromoji/build.xml
    lucene/dev/trunk/modules/benchmark/build.xml
    lucene/dev/trunk/modules/join/build.xml

Modified: lucene/dev/trunk/lucene/contrib/demo/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/contrib/demo/build.xml?rev=1326329&r1=1326328&r2=1326329&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/contrib/demo/build.xml (original)
+++ lucene/dev/trunk/lucene/contrib/demo/build.xml Sun Apr 15 13:30:20 2012
@@ -27,7 +27,7 @@
 
   <import file="../../module-build.xml"/>
 
-  <target name="init" depends="contrib-build.init,jar-lucene-core"/>
+  <target name="init" depends="module-build.init,jar-lucene-core"/>
   
   <path id="classpath">
 	 <pathelement path="${analyzers-common.jar}"/>

Modified: lucene/dev/trunk/lucene/module-build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/module-build.xml?rev=1326329&r1=1326328&r2=1326329&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/module-build.xml (original)
+++ lucene/dev/trunk/lucene/module-build.xml Sun Apr 15 13:30:20 2012
@@ -17,7 +17,7 @@
     limitations under the License.
  -->
 
-<project name="contrib-build" xmlns:artifact="antlib:org.apache.maven.artifact.ant">
+<project name="module-build" xmlns:artifact="antlib:org.apache.maven.artifact.ant">
   <echo>Building ${ant.project.name}...</echo>
 
   <!-- TODO: adjust build.dir/dist.dir appropriately when a contrib project is run individually -->

Modified: lucene/dev/trunk/modules/analysis/kuromoji/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/modules/analysis/kuromoji/build.xml?rev=1326329&r1=1326328&r2=1326329&view=diff
==============================================================================
--- lucene/dev/trunk/modules/analysis/kuromoji/build.xml (original)
+++ lucene/dev/trunk/modules/analysis/kuromoji/build.xml Sun Apr 15 13:30:20 2012
@@ -135,8 +135,8 @@
     <test-macro dataDir="src/tools/test" junit.classpath="tools.test.classpath"/>
   </target>
 
-  <target name="compile-test" depends="contrib-build.compile-test, compile-tools-tests"/>
+  <target name="compile-test" depends="module-build.compile-test, compile-tools-tests"/>
   <!-- TODO: not until we properly make 'test-tools' work with clover etc
-  <target name="test" depends="contrib-build.test, test-tools"/> -->
+  <target name="test" depends="module-build.test, test-tools"/> -->
 
 </project>

Modified: lucene/dev/trunk/modules/benchmark/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/modules/benchmark/build.xml?rev=1326329&r1=1326328&r2=1326329&view=diff
==============================================================================
--- lucene/dev/trunk/modules/benchmark/build.xml (original)
+++ lucene/dev/trunk/modules/benchmark/build.xml Sun Apr 15 13:30:20 2012
@@ -251,7 +251,7 @@
       </ant>
     </target>
 
-    <target name="init" depends="contrib-build.init,resolve-icu,jar-memory,jar-highlighter,jar-analyzers-common,jar-queryparser,jar-facet"/>
+    <target name="init" depends="module-build.init,resolve-icu,jar-memory,jar-highlighter,jar-analyzers-common,jar-queryparser,jar-facet"/>
   
     <target name="clean-javacc">
       <fileset dir="src/java/org/apache/lucene/benchmark/byTask/feeds/demohtml" includes="*.java">
@@ -265,7 +265,7 @@
 		     />
     </target>
     
-    <target name="compile-test" depends="copy-alg-files-for-testing,contrib-build.compile-test"/>
+    <target name="compile-test" depends="copy-alg-files-for-testing,module-build.compile-test"/>
     <target name="copy-alg-files-for-testing" description="copy .alg files as resources for testing">
       <copy todir="${build.dir}/classes/test/conf">
         <fileset dir="conf"/>

Modified: lucene/dev/trunk/modules/join/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/modules/join/build.xml?rev=1326329&r1=1326328&r2=1326329&view=diff
==============================================================================
--- lucene/dev/trunk/modules/join/build.xml (original)
+++ lucene/dev/trunk/modules/join/build.xml Sun Apr 15 13:30:20 2012
@@ -20,5 +20,5 @@
     <pathelement location="${build.dir}/classes/java"/>
   </path>
 
-  <target name="init" depends="contrib-build.init,jar-grouping"/>
+  <target name="init" depends="module-build.init,jar-grouping"/>
 </project>