You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ol...@apache.org on 2021/07/26 09:28:55 UTC

[sling-parent] branch master updated: SLING-10670 Make Javadoc excludePackageNames configurable via property

This is an automated email from the ASF dual-hosted git repository.

olli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-parent.git


The following commit(s) were added to refs/heads/master by this push:
     new 13a55de  SLING-10670 Make Javadoc excludePackageNames configurable via property
13a55de is described below

commit 13a55de2022e00af53b1c50257009677fded8ad6
Author: Oliver Lietz <ol...@apache.org>
AuthorDate: Mon Jul 26 11:28:37 2021 +0200

    SLING-10670 Make Javadoc excludePackageNames configurable via property
---
 sling-parent/pom.xml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/sling-parent/pom.xml b/sling-parent/pom.xml
index 91e4f68..55e9e0b 100644
--- a/sling-parent/pom.xml
+++ b/sling-parent/pom.xml
@@ -61,6 +61,7 @@
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
         <surefire.version>3.0.0-M4</surefire.version>
+        <javadoc.excludePackageNames>*.impl:*.internal:${site.javadoc.exclude}</javadoc.excludePackageNames>
     </properties>
 
     <scm>
@@ -273,7 +274,7 @@
                     <version>3.2.0</version>
                     <!-- this affects both direct invocation and execution in the context of site building (https://maven.apache.org/shared/maven-reporting-exec/) -->
                     <configuration>
-                        <excludePackageNames>*.impl:*.internal:${site.javadoc.exclude}</excludePackageNames>
+                        <excludePackageNames>${javadoc.excludePackageNames}</excludePackageNames>
                         <!-- suppress timestamp for reproducible builds (https://issues.apache.org/jira/browse/MPOM-260) -->
                         <notimestamp>true</notimestamp>
                     </configuration>