You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by he...@apache.org on 2023/03/13 14:31:31 UTC

[commons-jexl] branch master updated: JEXL: 3.3 RC1 - Fixing Javadoc

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

henrib pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-jexl.git


The following commit(s) were added to refs/heads/master by this push:
     new c6828af2 JEXL: 3.3 RC1 - Fixing Javadoc
     new 26757e71 Merge remote-tracking branch 'origin/master'
c6828af2 is described below

commit c6828af291a5c0d5386faaaeed0ecffe1c9c1d78
Author: henrib <he...@apache.org>
AuthorDate: Mon Mar 13 15:31:23 2023 +0100

    JEXL: 3.3 RC1
    - Fixing Javadoc
---
 pom.xml | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 3c6d82bc..3e3e6e08 100644
--- a/pom.xml
+++ b/pom.xml
@@ -339,12 +339,15 @@
 
     <reporting>
         <plugins>
+
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-javadoc-plugin</artifactId>
                 <configuration>
-                    <excludePackageNames>*.internal:*.parser</excludePackageNames>
-                    <show>public</show>
+                    <excludePackageNames>
+                        *.internal:*.internal.introspection:*.parser:
+                    </excludePackageNames>
+                    <show>protected</show>
                 </configuration>
             </plugin>