You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by io...@apache.org on 2014/04/01 00:56:14 UTC

svn commit: r1583483 - in /manifoldcf/integration: solr-3.x/trunk/build.xml solr-4.x/trunk/build.xml

Author: iorixxx
Date: Mon Mar 31 22:56:14 2014
New Revision: 1583483

URL: http://svn.apache.org/r1583483
Log:
Fix ant build image target so that it works on Mac

Modified:
    manifoldcf/integration/solr-3.x/trunk/build.xml
    manifoldcf/integration/solr-4.x/trunk/build.xml

Modified: manifoldcf/integration/solr-3.x/trunk/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/integration/solr-3.x/trunk/build.xml?rev=1583483&r1=1583482&r2=1583483&view=diff
==============================================================================
--- manifoldcf/integration/solr-3.x/trunk/build.xml (original)
+++ manifoldcf/integration/solr-3.x/trunk/build.xml Mon Mar 31 22:56:14 2014
@@ -99,10 +99,10 @@
   <target name="create-source-zip" depends="set-version">
       <zip destfile="apache-manifoldcf-solr-3.x-plugin-${release-version}-src.zip" update="false">
         <zipfileset dir="." prefix="apache-manifoldcf-solr-3.x-plugin-${release-version}">
-          <exclude name="/solr/"/>
-          <exclude name="/dist/"/>
-          <exclude name="/download/"/>
-          <exclude name="/apache-manifoldcf-solr-3.x-plugin-*"/>
+          <exclude name="solr/"/>
+          <exclude name="dist/"/>
+          <exclude name="download/"/>
+          <exclude name="apache-manifoldcf-solr-3.x-plugin-*"/>
         </zipfileset>
       </zip>
     </target>
@@ -110,10 +110,10 @@
   <target name="create-source-tar" depends="set-version">
       <tar destfile="apache-manifoldcf-solr-3.x-plugin-${release-version}-src.tar.gz" compression="gzip" longfile="gnu">
         <tarfileset dir="." prefix="apache-manifoldcf-solr-3.x-plugin-${release-version}">
-          <exclude name="/solr/"/>
-          <exclude name="/dist/"/>
-          <exclude name="/download/"/>
-          <exclude name="/apache-manifoldcf-solr-3.x-plugin-*"/>
+          <exclude name="solr/"/>
+          <exclude name="dist/"/>
+          <exclude name="download/"/>
+          <exclude name="apache-manifoldcf-solr-3.x-plugin-*"/>
         </tarfileset>
       </tar>
   </target>

Modified: manifoldcf/integration/solr-4.x/trunk/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/integration/solr-4.x/trunk/build.xml?rev=1583483&r1=1583482&r2=1583483&view=diff
==============================================================================
--- manifoldcf/integration/solr-4.x/trunk/build.xml (original)
+++ manifoldcf/integration/solr-4.x/trunk/build.xml Mon Mar 31 22:56:14 2014
@@ -99,11 +99,10 @@
   <target name="create-source-zip" depends="set-version">
       <zip destfile="apache-manifoldcf-solr-4.x-plugin-${release-version}-src.zip" update="false">
         <zipfileset dir="." prefix="apache-manifoldcf-solr-4.x-plugin-${release-version}">
-          <exclude name="/download/"/>
-          <exclude name="/solr/"/>
-          <exclude name="/dist/"/>
-          <exclude name="/download/"/>
-          <exclude name="/apache-manifoldcf-solr-4.x-plugin-*"/>
+          <exclude name="download/"/>
+          <exclude name="solr/"/>
+          <exclude name="dist/"/>        
+          <exclude name="apache-manifoldcf-solr-4.x-plugin-*"/>
         </zipfileset>
       </zip>
     </target>
@@ -111,11 +110,10 @@
   <target name="create-source-tar" depends="set-version">
       <tar destfile="apache-manifoldcf-solr-4.x-plugin-${release-version}-src.tar.gz" compression="gzip" longfile="gnu">
         <tarfileset dir="." prefix="apache-manifoldcf-solr-4.x-plugin-${release-version}">
-          <exclude name="/download/"/>
-          <exclude name="/solr/"/>
-          <exclude name="/dist/"/>
-          <exclude name="/download/"/>
-          <exclude name="/apache-manifoldcf-solr-4.x-plugin-*"/>
+          <exclude name="download/"/>
+          <exclude name="solr/"/>
+          <exclude name="dist/"/>        
+          <exclude name="apache-manifoldcf-solr-4.x-plugin-*"/>
         </tarfileset>
       </tar>
   </target>