You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sa...@apache.org on 2011/01/23 02:42:19 UTC

svn commit: r1062308 - in /lucene/dev/trunk/modules: ./ analysis/common/build.xml analysis/smartcn/build.xml analysis/stempel/build.xml benchmark/build.xml build.xml

Author: sarowe
Date: Sun Jan 23 01:42:19 2011
New Revision: 1062308

URL: http://svn.apache.org/viewvc?rev=1062308&view=rev
Log:
changed generate-maven-artifacts target to place all maven artifacts in one place: modules/dist/maven/; added modules/dist/ to list of dirs to remove with the 'clean' target; added modules/dist/ to svn:ignore list on modules/

Modified:
    lucene/dev/trunk/modules/   (props changed)
    lucene/dev/trunk/modules/analysis/common/build.xml
    lucene/dev/trunk/modules/analysis/smartcn/build.xml
    lucene/dev/trunk/modules/analysis/stempel/build.xml
    lucene/dev/trunk/modules/benchmark/build.xml
    lucene/dev/trunk/modules/build.xml

Modified: lucene/dev/trunk/modules/analysis/common/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/modules/analysis/common/build.xml?rev=1062308&r1=1062307&r2=1062308&view=diff
==============================================================================
--- lucene/dev/trunk/modules/analysis/common/build.xml (original)
+++ lucene/dev/trunk/modules/analysis/common/build.xml Sun Jan 23 01:42:19 2011
@@ -25,7 +25,6 @@
 	
   <property name="build.dir" location="../build/common" />
   <property name="dist.dir" location="../dist/common" />
-  <property name="maven.dist.dir" location="../dist/maven" />
 
   <import file="../../../lucene/contrib/contrib-build.xml"/>
 	

Modified: lucene/dev/trunk/modules/analysis/smartcn/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/modules/analysis/smartcn/build.xml?rev=1062308&r1=1062307&r2=1062308&view=diff
==============================================================================
--- lucene/dev/trunk/modules/analysis/smartcn/build.xml (original)
+++ lucene/dev/trunk/modules/analysis/smartcn/build.xml Sun Jan 23 01:42:19 2011
@@ -25,7 +25,6 @@
 	
   <property name="build.dir" location="../build/smartcn" />
   <property name="dist.dir" location="../dist/smartcn" />
-  <property name="maven.dist.dir" location="../dist/maven" />
 
   <import file="../../../lucene/contrib/contrib-build.xml"/>
 

Modified: lucene/dev/trunk/modules/analysis/stempel/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/modules/analysis/stempel/build.xml?rev=1062308&r1=1062307&r2=1062308&view=diff
==============================================================================
--- lucene/dev/trunk/modules/analysis/stempel/build.xml (original)
+++ lucene/dev/trunk/modules/analysis/stempel/build.xml Sun Jan 23 01:42:19 2011
@@ -25,7 +25,6 @@
 	
   <property name="build.dir" location="../build/stempel" />
   <property name="dist.dir" location="../dist/stempel" />
-  <property name="maven.dist.dir" location="../dist/maven" />
 
   <import file="../../../lucene/contrib/contrib-build.xml"/>
 

Modified: lucene/dev/trunk/modules/benchmark/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/modules/benchmark/build.xml?rev=1062308&r1=1062307&r2=1062308&view=diff
==============================================================================
--- lucene/dev/trunk/modules/benchmark/build.xml (original)
+++ lucene/dev/trunk/modules/benchmark/build.xml Sun Jan 23 01:42:19 2011
@@ -7,7 +7,7 @@
 
     <property name="build.dir" location="build/" />
     <property name="dist.dir" location="dist/" />
-    <property name="maven.dist.dir" location="dist/maven" />
+    <property name="maven.dist.dir" location="../dist/maven" />
 
     <import file="../../lucene/contrib/contrib-build.xml"/>
     <property name="working.dir" location="work"/>

Modified: lucene/dev/trunk/modules/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/modules/build.xml?rev=1062308&r1=1062307&r2=1062308&view=diff
==============================================================================
--- lucene/dev/trunk/modules/build.xml (original)
+++ lucene/dev/trunk/modules/build.xml Sun Jan 23 01:42:19 2011
@@ -56,8 +56,7 @@
 
   <target name="generate-maven-artifacts" description="Generate Maven Artifacts for Modules">
     <sequential>
-	  <ant target="get-maven-poms" inheritAll="false" dir=".."/>
-
+      <ant target="get-maven-poms" inheritAll="false" dir=".."/>
       <subant target="dist-maven" inheritall="false" failonerror="true">
         <fileset dir="analysis" includes="build.xml" />
         <fileset dir="benchmark" includes="build.xml" />
@@ -67,6 +66,7 @@
 
   <target name="clean" description="Clean all modules">
     <sequential>
+      <delete dir="dist"/>
       <subant target="clean" inheritall="false" failonerror="true">
         <fileset dir="analysis" includes="build.xml" />
         <fileset dir="benchmark" includes="build.xml" />