You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2022/08/31 14:07:23 UTC

[commons-parent] branch master updated (10278e4 -> af1116e)

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

ggregory pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-parent.git


    from 10278e4  Remove code coverage badge as this component does not have code
     new 505bc28  Bump maven-site-plugin from 3.12.1 to 4.0.0-M3
     new 3f8cdb4  Bump maven-site-plugin from 3.12.1 to 4.0.0-M3
     new af1116e  Hack to exclude Java sources from javancss-maven-plugin

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 pom.xml                 | 23 +++++++++++++++++++++--
 src/changes/changes.xml |  2 +-
 2 files changed, 22 insertions(+), 3 deletions(-)


[commons-parent] 03/03: Hack to exclude Java sources from javancss-maven-plugin

Posted by gg...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit af1116e1c024f2a7ce912235b35793c6ca63d94e
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Wed Aug 31 10:07:18 2022 -0400

    Hack to exclude Java sources from javancss-maven-plugin
    
    The latest javancss 33.54 in Maven Central fails on Java 8 sources and
    maybe even older Java versions
---
 pom.xml | 21 ++++++++++++++++++++-
 1 file changed, 20 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index b26c668..f4a30e9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -867,7 +867,26 @@
               <param>*.spdx</param>
             </excludedFilePatterns>
           </configuration>
-        </plugin>        
+        </plugin>
+        <plugin>
+          <groupId>org.codehaus.mojo</groupId>
+          <artifactId>javancss-maven-plugin</artifactId>
+          <dependencies>
+            <!-- javancss 33.54 is used by default
+            <dependency>
+              <groupId>org.codehaus.javancss</groupId>
+              <artifactId>javancss</artifactId>
+              <version>33.54</version>
+            </dependency>
+            -->
+          </dependencies>
+          <configuration>
+            <excludes>
+              <!-- The latest javancss 33.54 in Maven Central fails on Java 8 sources and maybe even older Java versions -->
+              <exclude>**/*.java</exclude>
+          </excludes>          
+          </configuration>
+        </plugin>
       </plugins>
     </pluginManagement>
     <plugins>


[commons-parent] 01/03: Bump maven-site-plugin from 3.12.1 to 4.0.0-M3

Posted by gg...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 505bc28ac7c7eb7913601f2e4ac7b6a7ddc388ec
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Wed Aug 31 09:05:18 2022 -0400

    Bump maven-site-plugin from 3.12.1 to 4.0.0-M3
    
    Fixes: [WARNING] An issue has occurred with apache-rat-plugin:0.14:rat
    report, skipping LinkageError
    org.apache.rat.mp.RatReportMojo.generate(Lorg/codehaus/doxia/sink/Sink;Ljava/util/Locale;)V,
    please report an issue to Maven dev team.
    java.lang.AbstractMethodError:
    org.apache.rat.mp.RatReportMojo.generate(Lorg/codehaus/doxia/sink/Sink;Ljava/util/Locale;)V
        at org.apache.maven.plugins.site.render.ReportDocumentRenderer.renderDocument
    (ReportDocumentRenderer.java:235)
        at org.apache.maven.doxia.siterenderer.DefaultSiteRenderer.render
    (DefaultSiteRenderer.java:348)
        at org.apache.maven.plugins.site.render.SiteMojo.renderLocale
    (SiteMojo.java:194)
        at org.apache.maven.plugins.site.render.SiteMojo.execute
    (SiteMojo.java:143)
        at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo
    (DefaultBuildPluginManager.java:137)
        at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2
    (MojoExecutor.java:370)
        at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute
    (MojoExecutor.java:351)
        at org.apache.maven.lifecycle.internal.MojoExecutor.execute
    (MojoExecutor.java:215)
        at org.apache.maven.lifecycle.internal.MojoExecutor.execute
    (MojoExecutor.java:171)
        at org.apache.maven.lifecycle.internal.MojoExecutor.execute
    (MojoExecutor.java:163)
        at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject
    (LifecycleModuleBuilder.java:117)
        at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject
    (LifecycleModuleBuilder.java:81)
        at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build
    (SingleThreadedBuilder.java:56)
        at org.apache.maven.lifecycle.internal.LifecycleStarter.execute
    (LifecycleStarter.java:128)
        at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:294)
        at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
        at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
        at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
        at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
        at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
        at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke
    (NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke
    (DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke (Method.java:498)
        at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced
    (Launcher.java:282)
        at org.codehaus.plexus.classworlds.launcher.Launcher.launch
    (Launcher.java:225)
        at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode
    (Launcher.java:406)
        at org.codehaus.plexus.classworlds.launcher.Launcher.main
    (Launcher.java:347)
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 65a7dd0..b26c668 100644
--- a/pom.xml
+++ b/pom.xml
@@ -189,7 +189,7 @@
      org.apache.maven.plugins:maven-site-plugin:3.9.0:site:
      java.lang.NoSuchMethodError: org.codehaus.plexus.util.xml.Xpp3Dom.getInputLocation()Ljava/lang/Object;
     -->
-    <commons.site-plugin.version>3.12.1</commons.site-plugin.version>
+    <commons.site-plugin.version>4.0.0-M3</commons.site-plugin.version>
     <commons.source-plugin.version>3.2.1</commons.source-plugin.version>
     <commons.spotbugs.plugin.version>4.7.1.1</commons.spotbugs.plugin.version>
     <commons.spotbugs.impl.version>4.7.1</commons.spotbugs.impl.version>


[commons-parent] 02/03: Bump maven-site-plugin from 3.12.1 to 4.0.0-M3

Posted by gg...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 3f8cdb4fd8569a67b45ee32e116f0e2eef6cb847
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Wed Aug 31 10:05:36 2022 -0400

    Bump maven-site-plugin from 3.12.1 to 4.0.0-M3
    
    Fixes: [WARNING] An issue has occurred with apache-rat-plugin:0.14:rat
    report, skipping LinkageError
    org.apache.rat.mp.RatReportMojo.generate(Lorg/codehaus/doxia/sink/Sink;Ljava/util/Locale;)V,
    please report an issue to Maven dev team.
    java.lang.AbstractMethodError:
    org.apache.rat.mp.RatReportMojo.generate(Lorg/codehaus/doxia/sink/Sink;Ljava/util/Locale;)V
        at org.apache.maven.plugins.site.render.ReportDocumentRenderer.renderDocument
    (ReportDocumentRenderer.java:235)
        at org.apache.maven.doxia.siterenderer.DefaultSiteRenderer.render
    (DefaultSiteRenderer.java:348)
        at org.apache.maven.plugins.site.render.SiteMojo.renderLocale
    (SiteMojo.java:194)
        at org.apache.maven.plugins.site.render.SiteMojo.execute
    (SiteMojo.java:143)
        at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo
    (DefaultBuildPluginManager.java:137)
        at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2
    (MojoExecutor.java:370)
        at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute
    (MojoExecutor.java:351)
        at org.apache.maven.lifecycle.internal.MojoExecutor.execute
    (MojoExecutor.java:215)
        at org.apache.maven.lifecycle.internal.MojoExecutor.execute
    (MojoExecutor.java:171)
        at org.apache.maven.lifecycle.internal.MojoExecutor.execute
    (MojoExecutor.java:163)
        at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject
    (LifecycleModuleBuilder.java:117)
        at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject
    (LifecycleModuleBuilder.java:81)
        at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build
    (SingleThreadedBuilder.java:56)
        at org.apache.maven.lifecycle.internal.LifecycleStarter.execute
    (LifecycleStarter.java:128)
        at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:294)
        at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
        at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
        at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
        at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
        at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
        at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke
    (NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke
    (DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke (Method.java:498)
        at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced
    (Launcher.java:282)
        at org.codehaus.plexus.classworlds.launcher.Launcher.launch
    (Launcher.java:225)
        at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode
    (Launcher.java:406)
        at org.codehaus.plexus.classworlds.launcher.Launcher.main
    (Launcher.java:347)
---
 src/changes/changes.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index edde5a2..08d505a 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -79,7 +79,7 @@ The <action> type attribute can be add,update,fix,remove.
            <action type="update" dev="ggregory" due-to="Gary Gregory, Dependabot">Bump spotbugs from 4.5.3 to 4.7.1 #120.</action>
            <action type="update" dev="ggregory" due-to="Gary Gregory, Dependabot">Bump spotbugs-maven-plugin from 4.5.3.0 to 4.7.1.1, #129.</action>
            <action type="update" dev="ggregory" due-to="Dependabot">Bump maven-project-info-reports-plugin from 3.2.2 to 3.4.1 #107, #128.</action>
-           <action type="update" dev="ggregory" due-to="Dependabot">Bump maven-site-plugin from 3.11.0 to 3.12.1 #108, #132.</action>
+           <action type="update" dev="ggregory" due-to="Dependabot">Bump maven-site-plugin from 3.11.0 to 4.0.0-M3 #108, #132. Fix [WARNING] An issue has occurred with apache-rat-plugin:0.14:rat report, skipping LinkageError org.apache.rat.mp.RatReportMojo.generate(Lorg/codehaus/doxia/sink/Sink;Ljava/util/Locale;)V,</action>
            <action type="update" dev="ggregory" due-to="Gary Gregory, Dependabot">Bump maven-bundle-plugin from 5.1.4 to 5.1.8, #111, #126, #133.</action>
            <action type="update" dev="ggregory" due-to="Gary Gregory">Bump net.sourceforge.pmd:pmd-* from 6.44.0 to 6.48.0.</action>
            <action type="update" dev="ggregory" due-to="Dependabot">Bump maven-jxr-plugin from 3.1.1 to 3.2.0 #110.</action>