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 2016/04/01 04:09:03 UTC

lucene-solr:branch_6x: completely untested logic to try to make javadocs work across our rats nest of spatial modules !

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_6x 586afc3db -> 115326478


completely untested logic to try to make javadocs work across our rats nest of spatial modules !


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/11532647
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/11532647
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/11532647

Branch: refs/heads/branch_6x
Commit: 1153264782bdd8f86a9c381637c57003250b985e
Parents: 586afc3
Author: Robert Muir <rm...@apache.org>
Authored: Thu Mar 31 22:00:16 2016 -0400
Committer: Robert Muir <rm...@apache.org>
Committed: Thu Mar 31 22:11:18 2016 -0400

----------------------------------------------------------------------
 lucene/sandbox/build.xml | 10 ++++++++++
 1 file changed, 10 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/11532647/lucene/sandbox/build.xml
----------------------------------------------------------------------
diff --git a/lucene/sandbox/build.xml b/lucene/sandbox/build.xml
index d53a6ac..4323241 100644
--- a/lucene/sandbox/build.xml
+++ b/lucene/sandbox/build.xml
@@ -46,6 +46,16 @@
     <path refid="test.classpath"/>
     <pathelement path="${java.class.path}"/>
   </path>
+
+  <target name="javadocs" depends="javadocs-spatial,compile-core,check-javadocs-uptodate"
+          unless="javadocs-uptodate-${name}">
+    <invoke-module-javadoc>
+      <links>
+        <link href="../spatial"/>
+      </links>
+    </invoke-module-javadoc>
+  </target>
+
   <target name="compile-test" depends="jar-spatial,compile-test-spatial,common.compile-test" />
 
 </project>