You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by kw...@apache.org on 2011/10/03 01:29:07 UTC

svn commit: r1178275 - /incubator/lcf/integration/solr-4.x/trunk/build.xml

Author: kwright
Date: Sun Oct  2 23:29:07 2011
New Revision: 1178275

URL: http://svn.apache.org/viewvc?rev=1178275&view=rev
Log:
Add imaging, debug rat-sources target

Modified:
    incubator/lcf/integration/solr-4.x/trunk/build.xml

Modified: incubator/lcf/integration/solr-4.x/trunk/build.xml
URL: http://svn.apache.org/viewvc/incubator/lcf/integration/solr-4.x/trunk/build.xml?rev=1178275&r1=1178274&r2=1178275&view=diff
==============================================================================
--- incubator/lcf/integration/solr-4.x/trunk/build.xml (original)
+++ incubator/lcf/integration/solr-4.x/trunk/build.xml Sun Oct  2 23:29:07 2011
@@ -83,6 +83,8 @@
       </tar>
   </target>
 
+  <target name="image" depends="create-source-zip,create-source-tar"/>
+
   <target name="help">
     <echo level="info">
 Apache Solr 4.x ManifoldCF Plugin build file.  Use this file to
@@ -93,6 +95,7 @@ Useful targets are:
 clean   - Clean the build area
 build   - Build jar under the 'dist' directory
 test    - Run the tests
+image - Package the sources
 
 Prerequisites: This build requires Subversion (svn) to be
 installed, and svn internet access to the Apache repository.
@@ -110,9 +113,8 @@ It also requires Java jdk1.6.0 or above.
   <target name="rat-sources" depends="-taskdef"
       description="runs the tasks over src/java excluding the license directory">
       <rat:report xmlns:rat="antlib:org.apache.rat.anttasks">
-        <fileset dir="src/">
-          <exclude name="solr/"/>
-          <exclude name="dist/"/>
+        <fileset dir="mcf/">
+          <exclude name="CHANGES.txt"/>
         </fileset>
       </rat:report>
   </target>