You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pivot.apache.org by rw...@apache.org on 2021/02/15 21:47:21 UTC

svn commit: r1886546 - /pivot/trunk/build.xml

Author: rwhitcomb
Date: Mon Feb 15 21:47:21 2021
New Revision: 1886546

URL: http://svn.apache.org/viewvc?rev=1886546&view=rev
Log:
Compile Javadoc to "private" level for debug builds.

Modified:
    pivot/trunk/build.xml

Modified: pivot/trunk/build.xml
URL: http://svn.apache.org/viewvc/pivot/trunk/build.xml?rev=1886546&r1=1886545&r2=1886546&view=diff
==============================================================================
--- pivot/trunk/build.xml (original)
+++ pivot/trunk/build.xml Mon Feb 15 21:47:21 2021
@@ -53,6 +53,9 @@ limitations under the License.
     <condition property="no.browser.support" value="true" else="false">
         <javaversion atleast="14"/>
     </condition>
+    <condition property="doc.access" value="private" else="protected">
+        <istrue value="${compiler.debug}"/>
+    </condition>
 
     <!-- Classpath-related properties -->
     <property environment="env"/>
@@ -606,6 +609,7 @@ limitations under the License.
         <javadoc packagenames="org.apache.pivot.*" destdir="${folder.doc}"
             author="true" version="true" use="true"
             package="true"
+            access="${doc.access}"
             classpath="${java.class.path}">
             <classpath>
                 <path refid="classpath.general"/>