You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by gs...@apache.org on 2008/09/09 23:15:52 UTC

svn commit: r693620 - /lucene/solr/branches/branch-1.3/build.xml

Author: gsingers
Date: Tue Sep  9 14:15:51 2008
New Revision: 693620

URL: http://svn.apache.org/viewvc?rev=693620&view=rev
Log:
more RAT checks

Modified:
    lucene/solr/branches/branch-1.3/build.xml

Modified: lucene/solr/branches/branch-1.3/build.xml
URL: http://svn.apache.org/viewvc/lucene/solr/branches/branch-1.3/build.xml?rev=693620&r1=693619&r2=693620&view=diff
==============================================================================
--- lucene/solr/branches/branch-1.3/build.xml (original)
+++ lucene/solr/branches/branch-1.3/build.xml Tue Sep  9 14:15:51 2008
@@ -819,9 +819,13 @@
   </target>
 <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/java">
+  <rat:report xmlns:rat="antlib:org.apache.rat.anttasks">
+      <fileset dir="src/java"/>
+      <fileset dir="client">
+        <exclude name="**/CHANGES.*"/>
       </fileset>
+      <fileset dir="contrib/dataimporthandler/src/main/java"/>
+      <fileset dir="contrib/dataimporthandler/src/test/java"/>
     </rat:report>
   </target>