You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by rm...@apache.org on 2012/11/06 19:05:43 UTC

svn commit: r1406256 - in /lucene/dev/branches/branch_4x: ./ solr/ solr/build.xml

Author: rmuir
Date: Tue Nov  6 18:05:42 2012
New Revision: 1406256

URL: http://svn.apache.org/viewvc?rev=1406256&view=rev
Log:
lock in hossman's changes, if someone defeats the boss stage (solr-core) then we move to the next level in the game

Modified:
    lucene/dev/branches/branch_4x/   (props changed)
    lucene/dev/branches/branch_4x/solr/   (props changed)
    lucene/dev/branches/branch_4x/solr/build.xml   (contents, props changed)

Modified: lucene/dev/branches/branch_4x/solr/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_4x/solr/build.xml?rev=1406256&r1=1406255&r2=1406256&view=diff
==============================================================================
--- lucene/dev/branches/branch_4x/solr/build.xml (original)
+++ lucene/dev/branches/branch_4x/solr/build.xml Tue Nov  6 18:05:42 2012
@@ -537,6 +537,15 @@
     <echo message="Checking for malformed docs..."/>
     <!-- TODO: add missing package.htmls and bump this to level=package -->
     <check-missing-javadocs dir="${javadoc.dir}" level="none"/>
+    <!-- prevent the modules without problems from getting worse -->
+    <check-missing-javadocs dir="${javadoc.dir}/solr-analysis-extras" level="package"/>
+    <check-missing-javadocs dir="${javadoc.dir}/solr-cell" level="package"/>
+    <check-missing-javadocs dir="${javadoc.dir}/solr-clustering" level="package"/>
+    <!-- solr-core: problems: -->
+    <check-missing-javadocs dir="${javadoc.dir}/solr-dataimporthandler" level="package"/>
+    <check-missing-javadocs dir="${javadoc.dir}/solr-dataimporthandler-extras" level="package"/>
+    <check-missing-javadocs dir="${javadoc.dir}/solr-solrj" level="package"/>
+    <check-missing-javadocs dir="${javadoc.dir}/solr-test-framework" level="package"/>
   </target>
  
   <target name="-ecj-javadoc-lint" depends="documentation,compile-solr-test-framework,-ecj-resolve">