You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by us...@apache.org on 2014/09/10 20:57:09 UTC

svn commit: r1624095 - /lucene/dev/trunk/build.xml

Author: uschindler
Date: Wed Sep 10 18:57:08 2014
New Revision: 1624095

URL: http://svn.apache.org/r1624095
Log:
Make "ant validate" also check svn working copy (we removed this check, because we wanted to be compatible with GIT checkouts or newer subversion repos). But we ignore those checks automatically, if its not a supported subversion.

Modified:
    lucene/dev/trunk/build.xml

Modified: lucene/dev/trunk/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/build.xml?rev=1624095&r1=1624094&r2=1624095&view=diff
==============================================================================
--- lucene/dev/trunk/build.xml (original)
+++ lucene/dev/trunk/build.xml Wed Sep 10 18:57:08 2014
@@ -81,14 +81,16 @@
     </subant>
   </target>
 
-  <target name="validate" description="Validate dependencies, licenses, etc." depends="-validate-source-patterns">
+  <target name="-validate">
     <subant target="validate" inheritall="false" failonerror="true">
       <fileset dir="lucene" includes="build.xml" />
       <fileset dir="solr" includes="build.xml" />
     </subant>
     <subant buildpath="lucene" target="check-lib-versions" inheritall="false" failonerror="true"/>
   </target>
-  
+
+  <target name="validate" description="Validate dependencies, licenses, etc." depends="-validate-source-patterns,-validate,check-svn-working-copy"/>
+
   <target name="-validate-source-patterns" unless="disable.source-patterns">
     <!-- check that there are no @author javadoc tags, tabs, svn keywords or nocommits: -->
     <property name="validate.currDir" location="."/>