Author: ryan
Date: Sun Dec  7 17:42:22 2008
New Revision: 724230

URL: http://svn.apache.org/viewvc?rev=724230&view=rev
Log:
SOLR-900 -- fixing 'ant dist'

Modified:
    lucene/solr/trunk/build.xml

Modified: lucene/solr/trunk/build.xml
URL: 
http://svn.apache.org/viewvc/lucene/solr/trunk/build.xml?rev=724230&r1=724229&r2=724230&view=diff
==============================================================================
--- lucene/solr/trunk/build.xml (original)
+++ lucene/solr/trunk/build.xml Sun Dec  7 17:42:22 2008
@@ -502,7 +502,7 @@
   <!-- Creates the solr jar. -->
   <target name="dist-jar"
           description="Creates the Solr JAR Distribution file."
-          depends="dist-solrj, compile, make-manifest">
+          depends="compile, make-manifest">
     <mkdir dir="${dist}" />
     <solr-jar destfile="${dist}/${fullname}-core-${version}.jar">
       <fileset dir="${dest}/solr" />
@@ -513,7 +513,7 @@
   <!-- Creates the solr jar. -->
   <target name="dist-solrj"
           description="Creates the Solr JAR Distribution file."
-          depends="compile-solrj">
+          depends="compile-solrj, make-manifest">
     <mkdir dir="${dist}" />
     <solr-jar
          destfile="${dist}/${fullname}-solrj-${version}.jar"


Reply via email to