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/03/26 22:09:32 UTC

svn commit: r1305530 - in /lucene/dev/branches/branch_3x: ./ lucene/ lucene/common-build.xml

Author: rmuir
Date: Mon Mar 26 20:09:32 2012
New Revision: 1305530

URL: http://svn.apache.org/viewvc?rev=1305530&view=rev
Log:
LUCENE-3906: allow specifying bootclasspath for javac/javadocs

Modified:
    lucene/dev/branches/branch_3x/   (props changed)
    lucene/dev/branches/branch_3x/lucene/   (props changed)
    lucene/dev/branches/branch_3x/lucene/common-build.xml

Modified: lucene/dev/branches/branch_3x/lucene/common-build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_3x/lucene/common-build.xml?rev=1305530&r1=1305529&r2=1305530&view=diff
==============================================================================
--- lucene/dev/branches/branch_3x/lucene/common-build.xml (original)
+++ lucene/dev/branches/branch_3x/lucene/common-build.xml Mon Mar 26 20:09:32 2012
@@ -100,7 +100,7 @@
   <!-- clover wants to run with -lib, otherwise we prefer a repeatable
        classpath -->
   <property name="javac.includeAntRuntime" value="${run.clover}"/>
-
+  <property name="bootclasspath" value=""/>
   <property name="javadoc.link" value="http://download.oracle.com/javase/1.5.0/docs/api/"/>
   <property name="javadoc.link.junit" value="http://junit.sourceforge.net/javadoc/"/>
   <property name="javadoc.packagelist.dir" value="${common.dir}/tools/javadoc"/>
@@ -768,6 +768,7 @@
       <javac
         includeAntRuntime="@{includeantruntime}"
         encoding="${build.encoding}"
+        bootclasspath="${bootclasspath}"
         srcdir="@{srcdir}"
         destdir="@{destdir}"
         deprecation="${javac.deprecation}"
@@ -816,6 +817,7 @@
       <record name="@{destdir}/log_javadoc.txt" action="start" append="no"/>
       <javadoc
           overview="@{overview}"
+          bootclasspath="${bootclasspath}"
           packagenames="org.apache.lucene.*,org.apache.solr.*"
           destdir="@{destdir}"
           access="${javadoc.access}"