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/02/01 19:16:03 UTC

svn commit: r1066113 - /lucene/dev/branches/branch_3x/build.xml

Author: sarowe
Date: Tue Feb  1 18:16:03 2011
New Revision: 1066113

URL: http://svn.apache.org/viewvc?rev=1066113&view=rev
Log:
make generate-maven-artifacts at the top level populate top-level dist/maven/ instead of two separate dist/maven/ dirs under lucene/ and solr/

Modified:
    lucene/dev/branches/branch_3x/build.xml

Modified: lucene/dev/branches/branch_3x/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_3x/build.xml?rev=1066113&r1=1066112&r2=1066113&view=diff
==============================================================================
--- lucene/dev/branches/branch_3x/build.xml (original)
+++ lucene/dev/branches/branch_3x/build.xml Tue Feb  1 18:16:03 2011
@@ -52,12 +52,13 @@
   </target>
 
   <target name="generate-maven-artifacts" description="Generate Maven Artifacts for Lucene and Solr">
+    <property name="maven.dist.dir"  location="dist/maven" />
+    <mkdir dir="${maven.dist.dir}" />
+
     <sequential>
       <subant target="generate-maven-artifacts" inheritall="false" failonerror="true">
+        <property name="maven.dist.dir"  location="${maven.dist.dir}" />
         <fileset dir="lucene" includes="build.xml" />
-      </subant>
-
-      <subant target="generate-maven-artifacts" inheritall="false" failonerror="true">
         <fileset dir="solr" includes="build.xml" />
       </subant>
     </sequential>