From 436966ed7f93611d5faa6534478347b99c40f488 Mon Sep 17 00:00:00 2001 From: Slawomir Jaranowski Date: Wed, 17 May 2023 23:31:27 +0200 Subject: [PATCH 1/9] [maven-release-plugin] prepare for next development iteration --- pom.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index e463000..6b32ba5 100644 --- a/pom.xml +++ b/pom.xml @@ -28,7 +28,7 @@ under the License. maven-source-plugin - 3.3.0 + 3.3.1-SNAPSHOT maven-plugin Apache Maven Source Plugin @@ -58,7 +58,7 @@ under the License. scm:git:https://gitbox.apache.org/repos/asf/maven-source-plugin.git scm:git:https://gitbox.apache.org/repos/asf/maven-source-plugin.git - maven-source-plugin-3.3.0 + HEAD https://github.com/apache/maven-source-plugin/tree/${project.scm.tag} @@ -79,7 +79,7 @@ under the License. 8 3.2.5 - 2023-05-17T21:31:06Z + 2023-05-17T21:31:27Z From 1edeea47f80bc5c5903e88c1adbff56501248a8b Mon Sep 17 00:00:00 2001 From: Alexander Brandes Date: Fri, 23 Jun 2023 11:43:37 +0200 Subject: [PATCH 2/9] [MSOURCES-139] Fix typo in AbstractSourceJarMojo exception --- .../org/apache/maven/plugins/source/AbstractSourceJarMojo.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/maven/plugins/source/AbstractSourceJarMojo.java b/src/main/java/org/apache/maven/plugins/source/AbstractSourceJarMojo.java index f624be7..3e56f99 100644 --- a/src/main/java/org/apache/maven/plugins/source/AbstractSourceJarMojo.java +++ b/src/main/java/org/apache/maven/plugins/source/AbstractSourceJarMojo.java @@ -306,7 +306,7 @@ protected void packageSources(List theProjects) throws MojoExecuti for (Artifact attachedArtifact : project.getAttachedArtifacts()) { if (isAlreadyAttached(attachedArtifact, project, getClassifier())) { getLog().error("We have duplicated artifacts attached."); - throw new MojoExecutionException("Presumably you have configured maven-source-plugn " + throw new MojoExecutionException("Presumably you have configured maven-source-plugin " + "to execute twice times in your build. You have to configure a classifier " + "for at least on of them."); } From 099c65a64ac20e9f1133b41e2d1906944f6c13c3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 11 Aug 2023 00:27:05 +0200 Subject: [PATCH 3/9] [MSOURCES-142] Bump org.codehaus.plexus:plexus-archiver from 4.7.1 to 4.8.0 (#12) Bumps [org.codehaus.plexus:plexus-archiver](https://github.com/codehaus-plexus/plexus-archiver) from 4.7.1 to 4.8.0. - [Release notes](https://github.com/codehaus-plexus/plexus-archiver/releases) - [Changelog](https://github.com/codehaus-plexus/plexus-archiver/blob/master/ReleaseNotes.md) - [Commits](https://github.com/codehaus-plexus/plexus-archiver/compare/plexus-archiver-4.7.1...plexus-archiver-4.8.0) --- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6b32ba5..f4007cf 100644 --- a/pom.xml +++ b/pom.xml @@ -133,7 +133,7 @@ under the License. org.codehaus.plexus plexus-archiver - 4.7.1 + 4.8.0 org.codehaus.plexus From 0b1c82366e306c9d138a3a83950326071c2fc7c6 Mon Sep 17 00:00:00 2001 From: sabi0 <2sabio@gmail.com> Date: Tue, 15 Aug 2023 15:53:20 +0200 Subject: [PATCH 4/9] Fix typos in AbstractSourceJarMojo exception "twice times" => "twice" "at least on of them" => "at least one of them" --- .../apache/maven/plugins/source/AbstractSourceJarMojo.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/maven/plugins/source/AbstractSourceJarMojo.java b/src/main/java/org/apache/maven/plugins/source/AbstractSourceJarMojo.java index 3e56f99..b3ead72 100644 --- a/src/main/java/org/apache/maven/plugins/source/AbstractSourceJarMojo.java +++ b/src/main/java/org/apache/maven/plugins/source/AbstractSourceJarMojo.java @@ -307,8 +307,8 @@ protected void packageSources(List theProjects) throws MojoExecuti if (isAlreadyAttached(attachedArtifact, project, getClassifier())) { getLog().error("We have duplicated artifacts attached."); throw new MojoExecutionException("Presumably you have configured maven-source-plugin " - + "to execute twice times in your build. You have to configure a classifier " - + "for at least on of them."); + + "to execute twice in your build. You have to configure a classifier " + + "for at least one of them."); } } projectHelper.attachArtifact(project, getType(), getClassifier(), outputFile); From 073462bf11ad9cf61cab6a2ed213bb8af5349f35 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 10 Jan 2024 07:19:35 -0500 Subject: [PATCH 5/9] Bump org.apache.maven:maven-archiver from 3.6.0 to 3.6.1 (#21) Bumps [org.apache.maven:maven-archiver](https://github.com/apache/maven-archiver) from 3.6.0 to 3.6.1. - [Release notes](https://github.com/apache/maven-archiver/releases) - [Commits](https://github.com/apache/maven-archiver/compare/maven-archiver-3.6.0...maven-archiver-3.6.1) --- updated-dependencies: - dependency-name: org.apache.maven:maven-archiver dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f4007cf..0416909 100644 --- a/pom.xml +++ b/pom.xml @@ -128,7 +128,7 @@ under the License. org.apache.maven maven-archiver - 3.6.0 + 3.6.1 org.codehaus.plexus From 40ae49538beebc793f16a91578629383de114edb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 10 Jan 2024 07:20:00 -0500 Subject: [PATCH 6/9] Bump org.codehaus.plexus:plexus-archiver from 4.8.0 to 4.9.1 (#20) Bumps [org.codehaus.plexus:plexus-archiver](https://github.com/codehaus-plexus/plexus-archiver) from 4.8.0 to 4.9.1. - [Release notes](https://github.com/codehaus-plexus/plexus-archiver/releases) - [Changelog](https://github.com/codehaus-plexus/plexus-archiver/blob/master/ReleaseNotes.md) - [Commits](https://github.com/codehaus-plexus/plexus-archiver/compare/plexus-archiver-4.8.0...plexus-archiver-4.9.1) --- updated-dependencies: - dependency-name: org.codehaus.plexus:plexus-archiver dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0416909..2016aca 100644 --- a/pom.xml +++ b/pom.xml @@ -133,7 +133,7 @@ under the License. org.codehaus.plexus plexus-archiver - 4.8.0 + 4.9.1 org.codehaus.plexus From 83c963c0fffadd3257e9a1ca9266cfac98c057c3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 10 Jan 2024 07:20:27 -0500 Subject: [PATCH 7/9] Bump org.apache.maven.plugins:maven-plugins from 39 to 41 (#18) Bumps [org.apache.maven.plugins:maven-plugins](https://github.com/apache/maven-parent) from 39 to 41. - [Release notes](https://github.com/apache/maven-parent/releases) - [Commits](https://github.com/apache/maven-parent/commits) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-plugins dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2016aca..01e9fae 100644 --- a/pom.xml +++ b/pom.xml @@ -23,7 +23,7 @@ under the License. org.apache.maven.plugins maven-plugins - 39 + 41 From 7626998d262931570c969abe3fc60cf911fd6820 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Mar 2024 06:42:55 +0000 Subject: [PATCH 8/9] Bump apache/maven-gh-actions-shared from 3 to 4 Bumps [apache/maven-gh-actions-shared](https://github.com/apache/maven-gh-actions-shared) from 3 to 4. - [Commits](https://github.com/apache/maven-gh-actions-shared/compare/v3...v4) --- updated-dependencies: - dependency-name: apache/maven-gh-actions-shared dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/maven-verify.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/maven-verify.yml b/.github/workflows/maven-verify.yml index 4d67fdc..932827c 100644 --- a/.github/workflows/maven-verify.yml +++ b/.github/workflows/maven-verify.yml @@ -24,4 +24,4 @@ on: jobs: build: name: Verify - uses: apache/maven-gh-actions-shared/.github/workflows/maven-verify.yml@v3 + uses: apache/maven-gh-actions-shared/.github/workflows/maven-verify.yml@v4 From f80596e4eb587cf99452b67b43ee9729fdadbf3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Boutemy?= Date: Sat, 30 Mar 2024 02:48:55 +0100 Subject: [PATCH 9/9] [maven-release-plugin] prepare release maven-source-plugin-3.3.1 --- pom.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 01e9fae..05bbc26 100644 --- a/pom.xml +++ b/pom.xml @@ -28,7 +28,7 @@ under the License. maven-source-plugin - 3.3.1-SNAPSHOT + 3.3.1 maven-plugin Apache Maven Source Plugin @@ -58,7 +58,7 @@ under the License. scm:git:https://gitbox.apache.org/repos/asf/maven-source-plugin.git scm:git:https://gitbox.apache.org/repos/asf/maven-source-plugin.git - HEAD + maven-source-plugin-3.3.1 https://github.com/apache/maven-source-plugin/tree/${project.scm.tag} @@ -79,7 +79,7 @@ under the License. 8 3.2.5 - 2023-05-17T21:31:27Z + 2024-03-30T01:48:50Z