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

[maven-gpg-plugin] branch mvn4 updated (6814aa6 -> 802da35)

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

slachiewicz pushed a change to branch mvn4
in repository https://gitbox.apache.org/repos/asf/maven-gpg-plugin.git


 discard 6814aa6  Switch a few core plugins to the new api
 discard 2af2d7b  mvn4 aggregator
     add db57eab  (doc) add GHA setup
     add 455750c  [MGPG-88] Require Java 8
     add bb9c79f  [MGPG-83] Require Maven 3.2.5+
     add f0dd2c7  [MGPG-86] Prevent NullPointerException when executable cannot be run
     add f179d8a  Bump maven-shade-plugin from 3.2.2 to 3.3.0
     add ec33cb8  Bump maven-invoker from 3.1.0 to 3.2.0
     add 4c076f5  Bump plexus-utils from 3.3.0 to 3.4.2
     new 6e4062c  mvn4 aggregator
     new 802da35  Switch a few core plugins to the new api

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (6814aa6)
            \
             N -- N -- N   refs/heads/mvn4 (802da35)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 2 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:
 .asf.yaml => .github/dependabot.yml                | 30 ++++++++++++----------
 .../release-drafter.yml                            |  5 ++--
 .../workflows/maven-verify.yml                     | 15 +++++++++--
 .../workflows/release-drafter.yml                  | 13 +++++++---
 pom.xml                                            | 18 ++++++++-----
 .../org/apache/maven/plugins/gpg/GpgSigner.java    |  4 +++
 .../apache/maven/plugins/gpg/GpgVersionParser.java |  5 +++-
 7 files changed, 63 insertions(+), 27 deletions(-)
 copy .asf.yaml => .github/dependabot.yml (75%)
 copy src/it/sign-release-without-passphrase/invoker.properties => .github/release-drafter.yml (84%)
 copy src/it/sign-and-deploy-file-with-pom/invoker.properties => .github/workflows/maven-verify.yml (78%)
 copy src/it/sign-and-deploy-file-with-pom/invoker.properties => .github/workflows/release-drafter.yml (76%)


[maven-gpg-plugin] 01/02: mvn4 aggregator

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

slachiewicz pushed a commit to branch mvn4
in repository https://gitbox.apache.org/repos/asf/maven-gpg-plugin.git

commit 6e4062c1608e7a4576fbb93c8908111e13e6531e
Author: Guillaume Nodet <gn...@gmail.com>
AuthorDate: Fri Jan 28 23:14:42 2022 +0100

    mvn4 aggregator
---
 pom.xml                                                             | 6 +++---
 .../java/org/apache/maven/plugins/gpg/SignAndDeployFileMojo.java    | 1 +
 src/test/java/org/apache/maven/plugins/gpg/it/InvokerTestUtils.java | 2 +-
 3 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/pom.xml b/pom.xml
index 0bf498b..41df64f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -62,7 +62,7 @@ under the License.
   </distributionManagement>
 
   <properties>
-    <mavenVersion>3.2.5</mavenVersion>
+    <mavenVersion>4.0.0-alpha-1-SNAPSHOT</mavenVersion>
     <javaVersion>8</javaVersion>
     <project.build.outputTimestamp>2021-05-05T16:39:01Z</project.build.outputTimestamp>
     <resource.delimiter>@</resource.delimiter>
@@ -113,13 +113,13 @@ under the License.
     <dependency>
       <groupId>org.apache.maven.shared</groupId>
       <artifactId>maven-artifact-transfer</artifactId>
-      <version>0.13.1</version>
+      <version>2.0.0-SNAPSHOT</version>
     </dependency>
     <dependency>
       <!-- org.eclipse.aether.util.artifact.SubArtifact -->
       <groupId>org.apache.maven.resolver</groupId>
       <artifactId>maven-resolver-util</artifactId>
-      <version>1.4.1</version>
+      <version>1.8.0-SNAPSHOT</version>
       <optional>true</optional>
     </dependency>
     <dependency>
diff --git a/src/main/java/org/apache/maven/plugins/gpg/SignAndDeployFileMojo.java b/src/main/java/org/apache/maven/plugins/gpg/SignAndDeployFileMojo.java
index 872bf80..3b76bb8 100644
--- a/src/main/java/org/apache/maven/plugins/gpg/SignAndDeployFileMojo.java
+++ b/src/main/java/org/apache/maven/plugins/gpg/SignAndDeployFileMojo.java
@@ -691,6 +691,7 @@ public class SignAndDeployFileMojo
             this.result = result;
         }
 
+        @Override
         public void add( ModelProblemCollectorRequest req )
         {
             if ( !ModelProblem.Severity.WARNING.equals( req.getSeverity() ) )
diff --git a/src/test/java/org/apache/maven/plugins/gpg/it/InvokerTestUtils.java b/src/test/java/org/apache/maven/plugins/gpg/it/InvokerTestUtils.java
index 3dd041d..70e3741 100644
--- a/src/test/java/org/apache/maven/plugins/gpg/it/InvokerTestUtils.java
+++ b/src/test/java/org/apache/maven/plugins/gpg/it/InvokerTestUtils.java
@@ -73,7 +73,7 @@ public class InvokerTestUtils
         final InvocationResult result;
 
         final File buildLog = new File( request.getBaseDirectory( request.getPomFile().getParentFile() ), "build.log" );
-        try ( final PrintStream buildLogStream = new PrintStream( buildLog ) )
+        try ( PrintStream buildLogStream = new PrintStream( buildLog ) )
         {
             final InvocationOutputHandler buildLogOutputHandler = new PrintStreamHandler( buildLogStream, false );
             final InvokerLogger logger = new PrintStreamLogger( buildLogStream, InvokerLogger.DEBUG );


[maven-gpg-plugin] 02/02: Switch a few core plugins to the new api

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

slachiewicz pushed a commit to branch mvn4
in repository https://gitbox.apache.org/repos/asf/maven-gpg-plugin.git

commit 802da35eebc1b6b11d2470d4e41e3c9a0809ac68
Author: Guillaume Nodet <gn...@gmail.com>
AuthorDate: Thu Feb 24 17:00:57 2022 +0100

    Switch a few core plugins to the new api
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 41df64f..d32e434 100644
--- a/pom.xml
+++ b/pom.xml
@@ -25,7 +25,7 @@ under the License.
   <parent>
     <artifactId>maven-plugins</artifactId>
     <groupId>org.apache.maven.plugins</groupId>
-    <version>34</version>
+    <version>35-SNAPSHOT</version>
     <relativePath />
   </parent>