From d86262c5fc4ca748731d5919d575c8f013a714f8 Mon Sep 17 00:00:00 2001 From: lprimak Date: Tue, 26 Dec 2023 12:23:54 -0600 Subject: [PATCH 01/74] [MPOM-452] Use properties for snapshot and release repository IDs as well --- pom.xml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 1e12bc8d..3863ecd5 100644 --- a/pom.xml +++ b/pom.xml @@ -68,20 +68,22 @@ under the License. - apache.releases.https + ${distMgmtReleasesId} ${distMgmtReleasesName} ${distMgmtReleasesUrl} - apache.snapshots.https + ${distMgmtSnapshotsId} ${distMgmtSnapshotsName} ${distMgmtSnapshotsUrl} + apache.releases.https Apache Release Distribution Repository https://repository.apache.org/service/local/staging/deploy/maven2 + apache.snapshots.https Apache Development Snapshot Repository https://repository.apache.org/content/repositories/snapshots https://www.apache.org/images/asf_logo_wide_2016.png From b938653652022a5754d7398168d3f897e55228af Mon Sep 17 00:00:00 2001 From: Konrad Windszus Date: Tue, 16 Jan 2024 10:53:00 +0100 Subject: [PATCH 02/74] [MPOM-264] Set "maven.compiler.release" on JDK 9+ (#188) --- pom.xml | 13 ++++++++++++- src/site-docs/apt/index.apt.vm | 6 ++++-- 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 3863ecd5..41f953e1 100644 --- a/pom.xml +++ b/pom.xml @@ -94,7 +94,7 @@ under the License. 3.6.3 1.8 ${maven.compiler.target} - 1.7 + 7 3.2.2 3.10.2 posix @@ -525,6 +525,17 @@ under the License. + + jdk9+ + + + [9,) + + + + ${maven.compiler.target} + + only-eclipse diff --git a/src/site-docs/apt/index.apt.vm b/src/site-docs/apt/index.apt.vm index 23a4904e..b53c1dd7 100644 --- a/src/site-docs/apt/index.apt.vm +++ b/src/site-docs/apt/index.apt.vm @@ -75,8 +75,10 @@ Apache Software Foundation Parent POM [] - ** The compiler plugin is set to default to <> (<<>> property) - and $context.get("project.build.sourceEncoding") source (<<>> property). + ** The compiler plugin is set target <> (<<>> property) + and assume $context.get("project.build.sourceEncoding") source encoding (<<>> property). When being executed + with JDK 9 or newer also <<>> is set to the value of property <<>>. + Therefore its value must not start with <<<1.>>> (use for example <<<8>>> instead of <<<1.8>>>). ** The jar plugin is set to add default specification and implementation entries. From fb0b50850a67813563309a54cf980ac159b0be19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Boutemy?= Date: Wed, 17 Jan 2024 07:55:49 +0100 Subject: [PATCH 03/74] supported since javac 5 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 41f953e1..577beec2 100644 --- a/pom.xml +++ b/pom.xml @@ -94,7 +94,7 @@ under the License. 3.6.3 1.8 ${maven.compiler.target} - 7 + 7 3.2.2 3.10.2 posix From 67ffaa9091f98c083f216760bd35bafd45ba61d8 Mon Sep 17 00:00:00 2001 From: Sylwester Lachiewicz Date: Sat, 20 Jan 2024 14:53:57 +0100 Subject: [PATCH 04/74] Update Site decoration model to 1.8.1 --- src/site-docs/site.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/site-docs/site.xml b/src/site-docs/site.xml index 501645a2..a7617751 100644 --- a/src/site-docs/site.xml +++ b/src/site-docs/site.xml @@ -19,8 +19,8 @@ specific language governing permissions and limitations under the License. --> - + ${project.name} @@ -94,7 +94,7 @@ under the License. - + From 305f03efd079eaac80854ae3bf0cd9c40ac83322 Mon Sep 17 00:00:00 2001 From: Konrad Windszus Date: Mon, 22 Jan 2024 16:35:38 +0100 Subject: [PATCH 05/74] [MPOM-265] Remove no longer used ".maven-apache-parent.marker" file (#189) This has been introduced in MPOM-255 for enabling a profile only when building the ASF parent itself. --- .maven-apache-parent.marker | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 .maven-apache-parent.marker diff --git a/.maven-apache-parent.marker b/.maven-apache-parent.marker deleted file mode 100644 index 864fd149..00000000 --- a/.maven-apache-parent.marker +++ /dev/null @@ -1,17 +0,0 @@ - -This is just a marker file to make sure that profile "enforce-output-timestamp-property" is not active for builds of this project. From c61c83e1ecc5d7b77e43497595a86a3315bfd6f0 Mon Sep 17 00:00:00 2001 From: Konrad Windszus Date: Mon, 22 Jan 2024 16:36:22 +0100 Subject: [PATCH 06/74] Document how to build site (#190) Remove mentions of the non-existing profile "run-its" --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0a34755d..b6465167 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ There are some guidelines which will make applying PRs easier for us: Optional supplemental description. ``` + Make sure you have added the necessary tests (JUnit/IT) for your changes. -+ Run all the tests with `mvn -Prun-its verify` to assure nothing else was accidentally broken. ++ Update the [site documentation](https://maven.apache.org/pom/asf/) accordingly in `src/site-docs` and build it via `mvn site -f site-pom.xml` (uses a dedicated POM to not be inherited) + Submit a pull request to the repository in the Apache organization. + Update your JIRA ticket and include a link to the pull request in the ticket. From 7d502147bc3c4e72b59ae97c9d32e5791eb62312 Mon Sep 17 00:00:00 2001 From: Christopher Tubbs Date: Fri, 26 Jan 2024 08:23:28 -0500 Subject: [PATCH 07/74] [MPOM-456] Bump surefire/failsafe from 3.2.2 to 3.2.5 (#179) --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 577beec2..131baad3 100644 --- a/pom.xml +++ b/pom.xml @@ -95,7 +95,7 @@ under the License. 1.8 ${maven.compiler.target} 7 - 3.2.2 + 3.2.5 3.10.2 posix From 4e05486793fa7938cb4de7eff04d54ceae05f9d3 Mon Sep 17 00:00:00 2001 From: Slawomir Jaranowski Date: Tue, 30 Jan 2024 21:21:02 +0100 Subject: [PATCH 08/74] Build by JDK 21 in order to deploy jenkins-lib deploy by JDK 21 https://github.com/apache/maven-jenkins-lib/pull/10 --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 40705a86..65862ed5 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -17,4 +17,4 @@ * under the License. */ -asfMavenTlpStdBuild(jdks:['17']) +asfMavenTlpStdBuild(jdks:['21']) From 8007b73535b18bd4c18c584ebea3e7a126ceb16f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 13 Feb 2024 23:58:02 +0100 Subject: [PATCH 09/74] [MPOM-458] Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.6.2 to 3.6.3 (#177) Bumps [org.apache.maven.plugins:maven-javadoc-plugin](https://github.com/apache/maven-javadoc-plugin) from 3.6.2 to 3.6.3. - [Release notes](https://github.com/apache/maven-javadoc-plugin/releases) - [Commits](https://github.com/apache/maven-javadoc-plugin/compare/maven-javadoc-plugin-3.6.2...maven-javadoc-plugin-3.6.3) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-javadoc-plugin 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 131baad3..af3304b4 100644 --- a/pom.xml +++ b/pom.xml @@ -119,7 +119,7 @@ under the License. 3.1.1 3.6.0 3.3.0 - 3.6.2 + 3.6.3 ${maven.plugin.tools.version} 3.4.5 3.0.1 From 7700fad3dccb48a5bef92451296dc5c0bdf73dc8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 14 Feb 2024 00:17:21 +0100 Subject: [PATCH 10/74] [MPOM-465] Bump org.apache.maven.plugins:maven-project-info-reports-plugin (#176) Bumps [org.apache.maven.plugins:maven-project-info-reports-plugin](https://github.com/apache/maven-project-info-reports-plugin) from 3.4.5 to 3.5.0. - [Commits](https://github.com/apache/maven-project-info-reports-plugin/compare/maven-project-info-reports-plugin-3.4.5...maven-project-info-reports-plugin-3.5.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-project-info-reports-plugin 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 af3304b4..0c8eff8a 100644 --- a/pom.xml +++ b/pom.xml @@ -121,7 +121,7 @@ under the License. 3.3.0 3.6.3 ${maven.plugin.tools.version} - 3.4.5 + 3.5.0 3.0.1 3.1.0 3.3.1 From a203e8e9c07a32c40288139aa84a32d58406af2a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 17 Feb 2024 12:31:53 +0100 Subject: [PATCH 11/74] [MPOM-457] Bump org.apache.maven.plugins:maven-compiler-plugin (#181) Bumps [org.apache.maven.plugins:maven-compiler-plugin](https://github.com/apache/maven-compiler-plugin) from 3.11.0 to 3.12.1. - [Release notes](https://github.com/apache/maven-compiler-plugin/releases) - [Commits](https://github.com/apache/maven-compiler-plugin/compare/maven-compiler-plugin-3.11.0...maven-compiler-plugin-3.12.1) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-compiler-plugin 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 0c8eff8a..a87fcb8a 100644 --- a/pom.xml +++ b/pom.xml @@ -109,7 +109,7 @@ under the License. 3.6.0 3.3.2 3.3.1 - 3.11.0 + 3.12.1 3.6.1 3.1.1 3.3.0 From 01af0581ebeb610240c1c4066985dd3bb8bec4ba Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 17 Feb 2024 16:04:14 +0100 Subject: [PATCH 12/74] [MPOM-466] Bump org.apache.rat:apache-rat-plugin from 0.15 to 0.16.1 (#193) Bumps org.apache.rat:apache-rat-plugin from 0.15 to 0.16.1. --- updated-dependencies: - dependency-name: org.apache.rat:apache-rat-plugin 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 a87fcb8a..2eb0d662 100644 --- a/pom.xml +++ b/pom.xml @@ -102,7 +102,7 @@ under the License. 1.11.2 2023-11-08T22:14:34Z - 0.15 + 0.16.1 1.5 1.11 3.1.0 From f0b8e669f987faacac1019b30b084a6d2ee4f7b7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 19 Mar 2024 22:07:14 +0100 Subject: [PATCH 13/74] [MPOM-469] Bump org.apache.maven.plugins:maven-shade-plugin from 3.5.1 to 3.5.2 (#194) Bumps [org.apache.maven.plugins:maven-shade-plugin](https://github.com/apache/maven-shade-plugin) from 3.5.1 to 3.5.2. - [Release notes](https://github.com/apache/maven-shade-plugin/releases) - [Commits](https://github.com/apache/maven-shade-plugin/compare/maven-shade-plugin-3.5.1...maven-shade-plugin-3.5.2) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-shade-plugin 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 2eb0d662..0b8efbed 100644 --- a/pom.xml +++ b/pom.xml @@ -127,7 +127,7 @@ under the License. 3.3.1 2.0.1 3.2.1 - 3.5.1 + 3.5.2 3.12.1 3.3.0 ${surefire.version} From 950d54855d9c053ea4e7935e1c808b7cec3a9471 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 19 Mar 2024 22:12:42 +0100 Subject: [PATCH 14/74] [MPOM-470] Bump org.apache.maven.plugins:maven-remote-resources-plugin (#196) Bumps [org.apache.maven.plugins:maven-remote-resources-plugin](https://github.com/apache/maven-remote-resources-plugin) from 3.1.0 to 3.2.0. - [Release notes](https://github.com/apache/maven-remote-resources-plugin/releases) - [Commits](https://github.com/apache/maven-remote-resources-plugin/compare/maven-remote-resources-plugin-3.1.0...maven-remote-resources-plugin-3.2.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-remote-resources-plugin 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 0b8efbed..72c4442e 100644 --- a/pom.xml +++ b/pom.xml @@ -123,7 +123,7 @@ under the License. ${maven.plugin.tools.version} 3.5.0 3.0.1 - 3.1.0 + 3.2.0 3.3.1 2.0.1 3.2.1 From 984071e0737fb33563d4aad0bdeab01ca034a98c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 19 Mar 2024 22:26:52 +0100 Subject: [PATCH 15/74] [MPOM-457] Bump org.apache.maven.plugins:maven-compiler-plugin (#198) Bumps [org.apache.maven.plugins:maven-compiler-plugin](https://github.com/apache/maven-compiler-plugin) from 3.12.1 to 3.13.0. - [Release notes](https://github.com/apache/maven-compiler-plugin/releases) - [Commits](https://github.com/apache/maven-compiler-plugin/compare/maven-compiler-plugin-3.12.1...maven-compiler-plugin-3.13.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-compiler-plugin 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 72c4442e..539966ca 100644 --- a/pom.xml +++ b/pom.xml @@ -109,7 +109,7 @@ under the License. 3.6.0 3.3.2 3.3.1 - 3.12.1 + 3.13.0 3.6.1 3.1.1 3.3.0 From 95c37a8b88e891e6fc0b05e031994a30789825a8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 21 Mar 2024 21:52:12 +0100 Subject: [PATCH 16/74] MPOM-471] Bump org.apache.maven.plugins:maven-assembly-plugin from 3.6.0 to 3.7.1 (#199) Bumps [org.apache.maven.plugins:maven-assembly-plugin](https://github.com/apache/maven-assembly-plugin) from 3.6.0 to 3.7.1. - [Release notes](https://github.com/apache/maven-assembly-plugin/releases) - [Commits](https://github.com/apache/maven-assembly-plugin/compare/maven-assembly-plugin-3.6.0...maven-assembly-plugin-3.7.1) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-assembly-plugin 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 539966ca..c944ec18 100644 --- a/pom.xml +++ b/pom.xml @@ -106,7 +106,7 @@ under the License. 1.5 1.11 3.1.0 - 3.6.0 + 3.7.1 3.3.2 3.3.1 3.13.0 From 8a3749f2b1892223e1b8f387fc6c01e78c8613e9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 21 Mar 2024 22:04:00 +0100 Subject: [PATCH 17/74] [MPOM-472] Bump org.apache.maven.plugins:maven-gpg-plugin from 3.1.0 to 3.2.1 (#200) Bumps [org.apache.maven.plugins:maven-gpg-plugin](https://github.com/apache/maven-gpg-plugin) from 3.1.0 to 3.2.1. - [Release notes](https://github.com/apache/maven-gpg-plugin/releases) - [Commits](https://github.com/apache/maven-gpg-plugin/compare/maven-gpg-plugin-3.1.0...maven-gpg-plugin-3.2.1) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-gpg-plugin 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 c944ec18..10ed06c7 100644 --- a/pom.xml +++ b/pom.xml @@ -114,7 +114,7 @@ under the License. 3.1.1 3.3.0 3.4.1 - 3.1.0 + 3.2.1 3.4.0 3.1.1 3.6.0 From d0f4a00a4996c4fcc8bc45551b93ad109131f539 Mon Sep 17 00:00:00 2001 From: Slawomir Jaranowski Date: Thu, 21 Mar 2024 22:00:48 +0100 Subject: [PATCH 18/74] [MPOM-467] Remove old property maven.plugin.tools.version --- pom.xml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 10ed06c7..9f3d269d 100644 --- a/pom.xml +++ b/pom.xml @@ -96,7 +96,6 @@ under the License. ${maven.compiler.target} 7 3.2.5 - 3.10.2 posix 1.11.2 @@ -120,7 +119,7 @@ under the License. 3.6.0 3.3.0 3.6.3 - ${maven.plugin.tools.version} + 3.10.2 3.5.0 3.0.1 3.2.0 From 17d241e2e08d923acda9615bd842707004023e83 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 3 Apr 2024 20:33:10 +0200 Subject: [PATCH 19/74] [MPOM-472] Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.1 to 3.2.2 (#202) Bumps [org.apache.maven.plugins:maven-gpg-plugin](https://github.com/apache/maven-gpg-plugin) from 3.2.1 to 3.2.2. - [Release notes](https://github.com/apache/maven-gpg-plugin/releases) - [Commits](https://github.com/apache/maven-gpg-plugin/compare/maven-gpg-plugin-3.2.1...maven-gpg-plugin-3.2.2) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-gpg-plugin 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 9f3d269d..aa77477e 100644 --- a/pom.xml +++ b/pom.xml @@ -113,7 +113,7 @@ under the License. 3.1.1 3.3.0 3.4.1 - 3.2.1 + 3.2.2 3.4.0 3.1.1 3.6.0 From b20a775cbf972919e5761940682dde09cf21cf17 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 4 Apr 2024 00:12:24 +0200 Subject: [PATCH 20/74] [MPOM-475] Bump org.apache.maven.plugins:maven-invoker-plugin from 3.6.0 to 3.6.1 (#203) Bumps [org.apache.maven.plugins:maven-invoker-plugin](https://github.com/apache/maven-invoker-plugin) from 3.6.0 to 3.6.1. - [Release notes](https://github.com/apache/maven-invoker-plugin/releases) - [Commits](https://github.com/apache/maven-invoker-plugin/compare/maven-invoker-plugin-3.6.0...maven-invoker-plugin-3.6.1) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-invoker-plugin 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 aa77477e..ac153337 100644 --- a/pom.xml +++ b/pom.xml @@ -116,7 +116,7 @@ under the License. 3.2.2 3.4.0 3.1.1 - 3.6.0 + 3.6.1 3.3.0 3.6.3 3.10.2 From 68c36eb5a5b043320d09c90d74e0a892f102eece Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 4 Apr 2024 00:19:08 +0200 Subject: [PATCH 21/74] [MPOM-476] Bump version.maven-plugin-tools from 3.10.2 to 3.12.0 (#204) Bumps `version.maven-plugin-tools` from 3.10.2 to 3.12.0. Updates `org.apache.maven.plugin-tools:maven-plugin-annotations` from 3.10.2 to 3.12.0 - [Release notes](https://github.com/apache/maven-plugin-tools/releases) - [Commits](https://github.com/apache/maven-plugin-tools/compare/maven-plugin-tools-3.10.2...maven-plugin-tools-3.12.0) Updates `org.apache.maven.plugins:maven-plugin-plugin` from 3.10.2 to 3.12.0 - [Release notes](https://github.com/apache/maven-plugin-tools/releases) - [Commits](https://github.com/apache/maven-plugin-tools/compare/maven-plugin-tools-3.10.2...maven-plugin-tools-3.12.0) Updates `org.apache.maven.plugins:maven-plugin-report-plugin` from 3.10.2 to 3.12.0 - [Release notes](https://github.com/apache/maven-plugin-tools/releases) - [Commits](https://github.com/apache/maven-plugin-tools/compare/maven-plugin-tools-3.10.2...maven-plugin-tools-3.12.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugin-tools:maven-plugin-annotations dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.apache.maven.plugins:maven-plugin-plugin dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.apache.maven.plugins:maven-plugin-report-plugin 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 ac153337..4b49a74f 100644 --- a/pom.xml +++ b/pom.xml @@ -119,7 +119,7 @@ under the License. 3.6.1 3.3.0 3.6.3 - 3.10.2 + 3.12.0 3.5.0 3.0.1 3.2.0 From 1285775226dbe91aba461a0afb414a9f145a36dd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 7 Apr 2024 15:45:25 +0200 Subject: [PATCH 22/74] [MPOM-479] Bump org.apache.maven.plugins:maven-source-plugin from 3.3.0 to 3.3.1 (#205) Bumps [org.apache.maven.plugins:maven-source-plugin](https://github.com/apache/maven-source-plugin) from 3.3.0 to 3.3.1. - [Commits](https://github.com/apache/maven-source-plugin/compare/maven-source-plugin-3.3.0...maven-source-plugin-3.3.1) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-source-plugin 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 4b49a74f..73c977c8 100644 --- a/pom.xml +++ b/pom.xml @@ -128,7 +128,7 @@ under the License. 3.2.1 3.5.2 3.12.1 - 3.3.0 + 3.3.1 ${surefire.version} 3.4.0 From b1d4214b21554fdbf9e6e976d147e0c0496ca037 Mon Sep 17 00:00:00 2001 From: Slawomir Jaranowski Date: Sat, 6 Apr 2024 23:31:04 +0200 Subject: [PATCH 23/74] [MPOM-478] Remove manually maintained history from site --- src/site-docs/apt/index.apt.vm | 66 ---------------------------------- 1 file changed, 66 deletions(-) diff --git a/src/site-docs/apt/index.apt.vm b/src/site-docs/apt/index.apt.vm index b53c1dd7..9ecadd8e 100644 --- a/src/site-docs/apt/index.apt.vm +++ b/src/site-docs/apt/index.apt.vm @@ -168,69 +168,3 @@ Settings Configuration {{{https://www.apache.org/dev/publishing-maven-artifacts.html}Publishing Maven Artifacts}}. You can test your environment setup using <<<-Papache-release>>> with the command line. - -History - -#if( $project.version.endsWith( "SNAPSHOT" ) ) - master: {{{https://github.com/apache/maven-apache-parent/tree/master/pom.xml}$project.version}} - ({{{https://github.com/apache/maven-apache-parent/compare/apache-30...master}diff}}) -#end -#macro ( display $version $date ) -#**##set( $prev = $version - 1 ) -| {{{https://github.com/apache/maven-apache-parent/tree/apache-$version/pom.xml}$version}} -| ({{{https://github.com/apache/maven-apache-parent/compare/apache-$prev...apache-$version}diff}}) | $date | -#end - -*--------------+------------+ -|| <> || <> || -*--------------+------------+ -#display( 31, '2023-11-08' ) -*--------------+------------+ -#display( 30, '2023-06-11' ) -*--------------+------------+ -#display( 29, '2022-12-11' ) -*--------------+------------+ -#display( 28, '2022-11-14' ) -*--------------+------------+ -#display( 27, '2022-07-10' ) -*--------------+------------+ -#display( 26, '2022-04-09' ) -*--------------+------------+ -#display( 25, '2022-02-20' ) -*--------------+------------+ -#display( 24, '2021-07-13' ) -*--------------+------------+ -#display( 23, '2020-01-25' ) -*--------------+------------+ -#display( 22, '2020-01-08' ) -*--------------+------------+ -#display( 21, '2018-08-21' ) -*--------------+------------+ -#display( 20, '2018-07-07' ) -*--------------+------------+ -#display( 19, '2018-01-24' ) -*--------------+------------+ -#display( 18, '2016-05-18' ) -*--------------+------------+ -#display( 17, '2015-04-24' ) -*--------------+------------+ -#display( 16, '2014-11-13' ) -*--------------+------------+ -#display( 15, '2014-09-24' ) -*--------------+------------+ -#display( 14, '2014-03-06' ) -*--------------+------------+ -#display( 13, '2013-01-20' ) -*--------------+------------+ -#display( 12, '2012-11-01' ) -*--------------+------------+ -#display( 11, '2012-08-08' ) -*--------------+------------+ -#display( 10, '2011-08-09' ) -*--------------+------------+ -#display( 9, '2011-02-15' ) -*--------------+------------+ -#display( 8, '2010-11-26' ) -*--------------+------------+ -#display( 7, '2009-12-29' ) -*--------------+------------+ From 32da25b36d3668193587e76314250929ec10bd2a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Apr 2024 09:54:03 +0200 Subject: [PATCH 24/74] [MPOM-472] Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.2 to 3.2.3 (#208) Bumps [org.apache.maven.plugins:maven-gpg-plugin](https://github.com/apache/maven-gpg-plugin) from 3.2.2 to 3.2.3. - [Release notes](https://github.com/apache/maven-gpg-plugin/releases) - [Commits](https://github.com/apache/maven-gpg-plugin/compare/maven-gpg-plugin-3.2.2...maven-gpg-plugin-3.2.3) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-gpg-plugin 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 73c977c8..fd55d98f 100644 --- a/pom.xml +++ b/pom.xml @@ -113,7 +113,7 @@ under the License. 3.1.1 3.3.0 3.4.1 - 3.2.2 + 3.2.3 3.4.0 3.1.1 3.6.1 From 8b9fef52d0594090df17d4d006ae8e88c46d0064 Mon Sep 17 00:00:00 2001 From: Slawomir Jaranowski Date: Thu, 11 Apr 2024 21:16:57 +0200 Subject: [PATCH 25/74] [MPOM-480] Remove maven-site-plugin:attach-descriptor --- pom.xml | 12 ------------ src/site-docs/apt/index.apt.vm | 32 ++++++++++++++++++++++++++++++-- 2 files changed, 30 insertions(+), 14 deletions(-) diff --git a/pom.xml b/pom.xml index fd55d98f..c12552f2 100644 --- a/pom.xml +++ b/pom.xml @@ -404,18 +404,6 @@ under the License. - - org.apache.maven.plugins - maven-site-plugin - - - attach-descriptor - - attach-descriptor - - - - diff --git a/src/site-docs/apt/index.apt.vm b/src/site-docs/apt/index.apt.vm index 9ecadd8e..5576222c 100644 --- a/src/site-docs/apt/index.apt.vm +++ b/src/site-docs/apt/index.apt.vm @@ -93,8 +93,6 @@ Apache Software Foundation Parent POM ** maven-remote-resources-plugin for {{{/apache-resource-bundles/jar/}org.apache.apache.resources:apache-jar-resource-bundle:$context.get("version.apache-resource-bundles")}}. - ** maven-site-plugin:attach-descriptor - ** maven-enforcer-plugin to check Maven and Java build prerequisites, configured via properties: *** <<>> property: default value is <> @@ -168,3 +166,33 @@ Settings Configuration {{{https://www.apache.org/dev/publishing-maven-artifacts.html}Publishing Maven Artifacts}}. You can test your environment setup using <<<-Papache-release>>> with the command line. + +Notices + + * Since version <<32>> <<>> was removed from <<>> section. + + Publishing a site descriptor is only needed in project parent poms, child projects not need publish it. + + When you need publish site descriptor in your project you should add, like: + ++------+ + + + + org.apache.maven.plugins + maven-site-plugin + false + + + attach-descriptor + + attach-descriptor + + + + + + ++------+ + + [] From 7f4a9a939ea33e29eeed83d6a26ca8e1b52fcb3a Mon Sep 17 00:00:00 2001 From: Slawomir Jaranowski Date: Fri, 12 Apr 2024 11:04:17 +0200 Subject: [PATCH 26/74] [MPOM-481] Improve description of maven-gpg-plugin settings --- src/site-docs/apt/index.apt.vm | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/src/site-docs/apt/index.apt.vm b/src/site-docs/apt/index.apt.vm index 5576222c..76dfb441 100644 --- a/src/site-docs/apt/index.apt.vm +++ b/src/site-docs/apt/index.apt.vm @@ -124,7 +124,8 @@ The <<>> Profile The profile includes the following plugins: - * maven-assembly-plugin: + * maven-assembly-plugin + {{{/apache-resource-bundles/source-release/}org.apache.apache.resources:apache-source-release-assembly-descriptor:$context.get("version.apache-resource-bundles")}} is added as dependency, and an execution is configured with <<>> id.\ The plugin is configured to take a <<>> name from the @@ -134,15 +135,25 @@ The <<>> Profile If you want to avoid this default assembly execution to provide your own mechanism to produce the source release archive, you can disable the execution by configuring <<>> parameter for this <<>> execution id - * maven-source-plugin: configured to build and attach a source jar. + * maven-source-plugin + + Configured to build and attach a source jar. + + * maven-javadoc-plugin + + Configured to build and attach a javadoc jar. + + * maven-gpg-plugin + + Configured to sign everything. - * maven-javadoc-plugin: configured to build and attach a javadoc jar. + On developer workstations it expects GnuPG agent to be available to get passphrases, + while on fully unattended (CI-like) workflows the use of <<>> environment variable use is recommended. - * maven-gpg-plugin: configured to sign everything. It expects to find - a passphrase in <<<$\{gpg.passphrase\}>>>, presumably in your <<>>. + * checksum-maven-plugin - * checksum-maven-plugin: configured to create a checksum file(s) for source release as - required by {{{http://www.apache.org/dev/release-distribution#sigs-and-sums}Apache release distribution policy}}. + Configured to create a checksum file(s) for source release as + required by {{{http://www.apache.org/dev/release-distribution#sigs-and-sums}Apache release distribution policy}}. [] From 13f75052d6a0ef1e834fe3a8e9f2752485240dc3 Mon Sep 17 00:00:00 2001 From: Slawomir Jaranowski Date: Sat, 13 Apr 2024 00:04:33 +0200 Subject: [PATCH 27/74] Add GitHub Actions to dependabot.yml --- .github/dependabot.yml | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index d0e9890e..fe655f70 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -16,9 +16,14 @@ # version: 2 updates: -- package-ecosystem: maven - directory: "/" - schedule: - interval: daily - time: '04:00' - open-pull-requests-limit: 10 + - package-ecosystem: maven + directory: "/" + schedule: + interval: daily + time: '04:00' + open-pull-requests-limit: 10 + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" From 6a4c4b0e1cfc1068a74627dc55ed6a973e911603 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Apr 2024 22:05:08 +0000 Subject: [PATCH 28/74] 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 bc1f5fd1..7c292555 100644 --- a/.github/workflows/maven-verify.yml +++ b/.github/workflows/maven-verify.yml @@ -24,6 +24,6 @@ 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 with: ff-site-goal: 'site site:stage -f site-pom.xml' From 257fbf7e0bca4337792d34822bf88d7ef78e9772 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 13 Apr 2024 09:37:25 +0200 Subject: [PATCH 29/74] [MPOM-484] Bump org.apache.maven.plugins:maven-jar-plugin from 3.3.0 to 3.4.0 (#212) Bumps [org.apache.maven.plugins:maven-jar-plugin](https://github.com/apache/maven-jar-plugin) from 3.3.0 to 3.4.0. - [Release notes](https://github.com/apache/maven-jar-plugin/releases) - [Commits](https://github.com/apache/maven-jar-plugin/compare/maven-jar-plugin-3.3.0...maven-jar-plugin-3.4.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-jar-plugin 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 c12552f2..0102117b 100644 --- a/pom.xml +++ b/pom.xml @@ -117,7 +117,7 @@ under the License. 3.4.0 3.1.1 3.6.1 - 3.3.0 + 3.4.0 3.6.3 3.12.0 3.5.0 From 37c903bad381eedb5b7a54244fb5301680c522dd Mon Sep 17 00:00:00 2001 From: Slawomir Jaranowski Date: Fri, 12 Apr 2024 20:41:37 +0200 Subject: [PATCH 30/74] [MPOM-483] Make a separate module for documentation --- .github/workflows/maven-verify.yml | 2 - README.md | 3 +- site-pom.xml => docs/pom.xml | 44 +++++++++++++++---- .../src/site}/apt/index.apt.vm | 0 .../src/site}/resources/download.cgi | 0 {src/site-docs => docs/src/site}/site.xml | 0 .../src/site}/xdoc/download.xml.vm | 0 pom.xml | 14 ++++++ 8 files changed, 50 insertions(+), 13 deletions(-) rename site-pom.xml => docs/pom.xml (78%) rename {src/site-docs => docs/src/site}/apt/index.apt.vm (100%) rename {src/site-docs => docs/src/site}/resources/download.cgi (100%) rename {src/site-docs => docs/src/site}/site.xml (100%) rename {src/site-docs => docs/src/site}/xdoc/download.xml.vm (100%) diff --git a/.github/workflows/maven-verify.yml b/.github/workflows/maven-verify.yml index 7c292555..932827cf 100644 --- a/.github/workflows/maven-verify.yml +++ b/.github/workflows/maven-verify.yml @@ -25,5 +25,3 @@ jobs: build: name: Verify uses: apache/maven-gh-actions-shared/.github/workflows/maven-verify.yml@v4 - with: - ff-site-goal: 'site site:stage -f site-pom.xml' diff --git a/README.md b/README.md index b6465167..71565ac7 100644 --- a/README.md +++ b/README.md @@ -62,8 +62,7 @@ There are some guidelines which will make applying PRs easier for us: [MPOM-XXX] - Subject of the JIRA Ticket Optional supplemental description. ``` -+ Make sure you have added the necessary tests (JUnit/IT) for your changes. -+ Update the [site documentation](https://maven.apache.org/pom/asf/) accordingly in `src/site-docs` and build it via `mvn site -f site-pom.xml` (uses a dedicated POM to not be inherited) ++ Update the [site documentation](https://maven.apache.org/pom/asf/) accordingly in `docs/src/site` and build it via `mvn site -f docs` + Submit a pull request to the repository in the Apache organization. + Update your JIRA ticket and include a link to the pull request in the ticket. diff --git a/site-pom.xml b/docs/pom.xml similarity index 78% rename from site-pom.xml rename to docs/pom.xml index 35ef318b..dc91db7c 100644 --- a/site-pom.xml +++ b/docs/pom.xml @@ -26,10 +26,9 @@ under the License. org.apache apache 32-SNAPSHOT - ./pom.xml - apache. + docs pom Apache Software Foundation Parent POM @@ -46,16 +45,11 @@ under the License. - - scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git - scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git - https://github.com/apache/maven-apache-parent/tree/${project.scm.tag} - apache-${project.version} - jira https://issues.apache.org/jira/issues/?jql=project%3DMPOM+AND+component%3Dasf + Jenkins https://ci-maven.apache.org/job/Maven/job/maven-box/job/maven-apache-parent/ @@ -68,6 +62,7 @@ under the License. + apache.website @@ -78,6 +73,10 @@ under the License. ${user.home}/maven-sites pom-archives/asf-LATEST + + + true + true @@ -86,7 +85,6 @@ under the License. org.apache.maven.plugins maven-site-plugin - ${basedir}/src/site-docs true @@ -110,4 +108,32 @@ under the License. + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + + ${project.parent.scm.url} + + + index + dependency-management + plugin-management + plugins + ci-management + issue-management + mailing-lists + scm + + + + + + + + diff --git a/src/site-docs/apt/index.apt.vm b/docs/src/site/apt/index.apt.vm similarity index 100% rename from src/site-docs/apt/index.apt.vm rename to docs/src/site/apt/index.apt.vm diff --git a/src/site-docs/resources/download.cgi b/docs/src/site/resources/download.cgi similarity index 100% rename from src/site-docs/resources/download.cgi rename to docs/src/site/resources/download.cgi diff --git a/src/site-docs/site.xml b/docs/src/site/site.xml similarity index 100% rename from src/site-docs/site.xml rename to docs/src/site/site.xml diff --git a/src/site-docs/xdoc/download.xml.vm b/docs/src/site/xdoc/download.xml.vm similarity index 100% rename from src/site-docs/xdoc/download.xml.vm rename to docs/src/site/xdoc/download.xml.vm diff --git a/pom.xml b/pom.xml index 0102117b..2af0b6a3 100644 --- a/pom.xml +++ b/pom.xml @@ -59,6 +59,10 @@ under the License. + + docs + + scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git @@ -404,6 +408,16 @@ under the License. + + + + org.apache.maven.plugins + maven-site-plugin + false + + true + + From b7f79de7cbda0b6866ac6d6aea4c0bb47161d897 Mon Sep 17 00:00:00 2001 From: Slawomir Jaranowski Date: Sat, 13 Apr 2024 17:07:42 +0200 Subject: [PATCH 31/74] [MPOM-486] Enable autoVersionSubmodules for maven-release-plugin --- docs/src/site/apt/index.apt.vm | 11 ++++++++--- pom.xml | 1 + 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/docs/src/site/apt/index.apt.vm b/docs/src/site/apt/index.apt.vm index 76dfb441..2bdc30d5 100644 --- a/docs/src/site/apt/index.apt.vm +++ b/docs/src/site/apt/index.apt.vm @@ -85,9 +85,14 @@ Apache Software Foundation Parent POM ** The resources plugin is set for $context.get("project.build.sourceEncoding"). ** The release plugin is set, via the - \ configuration element, to enable the - <> profile during <<>> execution and to disable - \. + + *** \ configuration element, to enable the<> profile during <<>> execution + + *** disable \ + + *** enable \ + + [] * <>: The plugins section configures three executions: diff --git a/pom.xml b/pom.xml index 2af0b6a3..ae6895df 100644 --- a/pom.xml +++ b/pom.xml @@ -294,6 +294,7 @@ under the License. maven-release-plugin ${version.maven-release-plugin} + true false deploy apache-release From 54deb55e7cfa352ff8e8752cd689c9a93d4cc0bc Mon Sep 17 00:00:00 2001 From: Slawomir Jaranowski Date: Sat, 13 Apr 2024 18:31:26 +0200 Subject: [PATCH 32/74] [maven-release-plugin] prepare release apache-32 --- docs/pom.xml | 2 +- pom.xml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/pom.xml b/docs/pom.xml index dc91db7c..a107ddaa 100644 --- a/docs/pom.xml +++ b/docs/pom.xml @@ -25,7 +25,7 @@ under the License. org.apache apache - 32-SNAPSHOT + 32 docs diff --git a/pom.xml b/pom.xml index ae6895df..3c20e154 100644 --- a/pom.xml +++ b/pom.xml @@ -25,7 +25,7 @@ under the License. org.apache apache - 32-SNAPSHOT + 32 pom The Apache Software Foundation @@ -67,7 +67,7 @@ under the License. scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git https://github.com/apache/maven-apache-parent/tree/${project.scm.tag} - HEAD + apache-32 @@ -103,7 +103,7 @@ under the License. posix 1.11.2 - 2023-11-08T22:14:34Z + 2024-04-13T16:31:25Z 0.16.1 1.5 From 650c1cb7dc6c5205d6d0e6694584d693378d5e0d Mon Sep 17 00:00:00 2001 From: Slawomir Jaranowski Date: Sat, 13 Apr 2024 18:31:35 +0200 Subject: [PATCH 33/74] [maven-release-plugin] prepare for next development iteration --- docs/pom.xml | 2 +- pom.xml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/pom.xml b/docs/pom.xml index a107ddaa..ae9b9637 100644 --- a/docs/pom.xml +++ b/docs/pom.xml @@ -25,7 +25,7 @@ under the License. org.apache apache - 32 + 33-SNAPSHOT docs diff --git a/pom.xml b/pom.xml index 3c20e154..22f4667f 100644 --- a/pom.xml +++ b/pom.xml @@ -25,7 +25,7 @@ under the License. org.apache apache - 32 + 33-SNAPSHOT pom The Apache Software Foundation @@ -67,7 +67,7 @@ under the License. scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git https://github.com/apache/maven-apache-parent/tree/${project.scm.tag} - apache-32 + HEAD @@ -103,7 +103,7 @@ under the License. posix 1.11.2 - 2024-04-13T16:31:25Z + 2024-04-13T16:31:35Z 0.16.1 1.5 From bddb892bf09f718bb0061a0c8fa1c702e8c42bbd Mon Sep 17 00:00:00 2001 From: Slawomir Jaranowski Date: Sat, 20 Apr 2024 15:28:19 +0200 Subject: [PATCH 34/74] Add Release Drafter --- .github/release-drafter.yml | 23 ++++++++++++++++++++++ .github/workflows/release-drafter.yml | 28 +++++++++++++++++++++++++++ 2 files changed, 51 insertions(+) create mode 100644 .github/release-drafter.yml create mode 100644 .github/workflows/release-drafter.yml diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml new file mode 100644 index 00000000..a22932dc --- /dev/null +++ b/.github/release-drafter.yml @@ -0,0 +1,23 @@ + + +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + +_extends: maven-gh-actions-shared +name-template: $NEXT_MAJOR_VERSION +version-template: $NEXT_MAJOR_VERSION +tag-template: apache-$NEXT_MAJOR_VERSION diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml new file mode 100644 index 00000000..5205f96e --- /dev/null +++ b/.github/workflows/release-drafter.yml @@ -0,0 +1,28 @@ + + +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + +name: Release Drafter +on: + push: + branches: + - master + +jobs: + update_release_draft: + uses: apache/maven-gh-actions-shared/.github/workflows/release-drafter.yml@v4 From 279c022ef3503758fd9e7632abbedbe395e7f929 Mon Sep 17 00:00:00 2001 From: Slawomir Jaranowski Date: Sat, 20 Apr 2024 21:37:08 +0200 Subject: [PATCH 35/74] Add Release Drafter - try with NEXT_PATCH_VERSION #215 --- .github/release-drafter.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index a22932dc..00647195 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -18,6 +18,6 @@ # under the License. _extends: maven-gh-actions-shared -name-template: $NEXT_MAJOR_VERSION -version-template: $NEXT_MAJOR_VERSION -tag-template: apache-$NEXT_MAJOR_VERSION +name-template: $NEXT_PATCH_VERSION +version-template: $NEXT_PATCH_VERSION +tag-template: apache-$NEXT_PATCH_VERSION From c479fcd725043d0c2ee8664d5e9fbb0f79c7174c Mon Sep 17 00:00:00 2001 From: Slawomir Jaranowski Date: Sat, 20 Apr 2024 21:44:08 +0200 Subject: [PATCH 36/74] Add Release Drafter - try with NEXT_MINOR_VERSION #215 --- .github/release-drafter.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index 00647195..a0c3e7b5 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -18,6 +18,5 @@ # under the License. _extends: maven-gh-actions-shared -name-template: $NEXT_PATCH_VERSION -version-template: $NEXT_PATCH_VERSION -tag-template: apache-$NEXT_PATCH_VERSION +tag-template: apache-$NEXT_MINOR_VERSION + From f6b35a4d528bbf00f41aa138b26efe4769c388db Mon Sep 17 00:00:00 2001 From: Slawomir Jaranowski Date: Sat, 20 Apr 2024 21:48:37 +0200 Subject: [PATCH 37/74] Add Release Drafter - try with RESOLVED_VERSION #215 --- .github/release-drafter.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index a0c3e7b5..f5936052 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -18,5 +18,7 @@ # under the License. _extends: maven-gh-actions-shared -tag-template: apache-$NEXT_MINOR_VERSION +tag-template: apache-$RESOLVED_VERSION +version-resolver: + default: major \ No newline at end of file From 4677c803f5b4a4513375a226b0e6846b1a5e0c02 Mon Sep 17 00:00:00 2001 From: Slawomir Jaranowski Date: Sat, 20 Apr 2024 22:45:35 +0200 Subject: [PATCH 38/74] Add Release Drafter - version-template with MAJOR #215 --- .github/release-drafter.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index f5936052..aba5f21e 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -18,7 +18,6 @@ # under the License. _extends: maven-gh-actions-shared -tag-template: apache-$RESOLVED_VERSION - -version-resolver: - default: major \ No newline at end of file +version-template: '$MAJOR' +name-template: 'Apache Parent POM version $NEXT_MAJOR_VERSION' +tag-template: 'apache-$NEXT_MAJOR_VERSION' From 8bf1c8ddd3638e7f97c2905911bc7a51b660c0fc Mon Sep 17 00:00:00 2001 From: Slawomir Jaranowski Date: Sun, 21 Apr 2024 00:10:11 +0200 Subject: [PATCH 39/74] Enable GitHUb issues --- .asf.yaml | 9 ++++++++- README.md | 24 +++++++++--------------- 2 files changed, 17 insertions(+), 16 deletions(-) diff --git a/.asf.yaml b/.asf.yaml index c63bf172..9a3bbdd3 100644 --- a/.asf.yaml +++ b/.asf.yaml @@ -27,4 +27,11 @@ github: merge: false rebase: true autolink_jira: - - MPOM \ No newline at end of file + - MPOM + del_branch_on_merge: true + features: + issues: true + notifications: + commits: commits@maven.apache.org + issues: issues@maven.apache.org + pullrequests: issues@maven.apache.org diff --git a/README.md b/README.md index 71565ac7..98f69476 100644 --- a/README.md +++ b/README.md @@ -17,10 +17,10 @@ Contributing to [Apache Software Foundation Parent POM](https://maven.apache.org/pom/asf/) ====================== -[![ASF Jira](https://img.shields.io/endpoint?url=https%3A%2F%2Fmaven.apache.org%2Fbadges%2Fasf_jira-MPOM.json)][jira] [![Apache License, Version 2.0, January 2004](https://img.shields.io/github/license/apache/maven.svg?label=License)][license] [![Maven Central](https://img.shields.io/maven-central/v/org.apache/apache.svg?label=Maven%20Central)](https://search.maven.org/artifact/org.apache/apache) [![Jenkins Status](https://img.shields.io/jenkins/s/https/ci-maven.apache.org/job/Maven/job/maven-box/job/maven-apache-parent/job/master.svg)][build] +[![Verify](https://github.com/apache/maven-apache-parent/actions/workflows/maven-verify.yml/badge.svg)](https://github.com/apache/maven-apache-parent/actions/workflows/maven-verify.yml) Have you found a bug or have an idea for a cool new feature? Contributing code is a great way to give something back to the open source community. Before @@ -31,8 +31,7 @@ things. Getting Started --------------- -+ Make sure you have a [JIRA account](https://issues.apache.org/jira/). -+ Make sure you have a [GitHub account](https://github.com/signup/free). ++ Make sure you have a [GitHub account](https://github.com/signup). + If you're planning to implement a new feature, please discuss your changes on the [developer mailing list][ml-list] first. This way you can make sure you're not wasting your time on something that isn't @@ -57,39 +56,34 @@ There are some guidelines which will make applying PRs easier for us: + Create minimal diffs - disable on save actions like reformat source code or organize imports. If you feel the source code should be reformatted, create a separate PR for this change. + Check for unnecessary whitespace with `git diff --check` before committing. -+ Make sure your commit messages are in the proper format. Your commit message should contain the key of the JIRA issue. ++ Make sure your commit messages are in the proper format. Your commit message should contain the key of the issue. ``` -[MPOM-XXX] - Subject of the JIRA Ticket +[#issue-numebr] - Subject of the issue Optional supplemental description. ``` + Update the [site documentation](https://maven.apache.org/pom/asf/) accordingly in `docs/src/site` and build it via `mvn site -f docs` + Submit a pull request to the repository in the Apache organization. -+ Update your JIRA ticket and include a link to the pull request in the ticket. If you plan to contribute on a regular basis, please consider filing a [contributor license agreement][cla]. Making Trivial Changes ---------------------- -For changes of a trivial nature to comments and documentation, it is not always -necessary to create a new ticket in JIRA. In this case, it is appropriate to -start the first line of a commit with '(doc)' instead of a ticket number. +For changes of a trivial nature to comments and documentation, or other simple changes +it is not always necessary to create a new issue. +In this case, it is appropriate to skip the issue from a commit message. Additional Resources -------------------- + [Contributing patches](https://maven.apache.org/guides/development/guide-maven-development.html#Creating_and_submitting_a_patch) -+ [Apache Maven POMs JIRA project page][jira] + [Contributor License Agreement][cla] -+ [General GitHub documentation](https://help.github.com/) -+ [GitHub pull request documentation](https://help.github.com/send-pull-requests/) ++ [General GitHub documentation](https://docs.github.com/) ++ [GitHub pull request documentation](https://docs.github.com/pull-requests) + [Apache Maven Twitter Account](https://twitter.com/ASFMavenProject) -+ #Maven IRC channel on freenode.org -[jira]: https://issues.apache.org/jira/projects/MPOM/ [license]: https://www.apache.org/licenses/LICENSE-2.0 [ml-list]: https://maven.apache.org/mailing-lists.html [code-style]: https://maven.apache.org/developers/conventions/code.html [cla]: https://www.apache.org/licenses/#clas -[maven-wiki]: https://cwiki.apache.org/confluence/display/MAVEN/Index [build]: https://ci-maven.apache.org/job/Maven/job/maven-box/job/maven-apache-parent/job/master/ From 1409c5c511fa2a152534ad176adf009ca5085b68 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Apr 2024 04:05:05 +0000 Subject: [PATCH 40/74] Bump org.apache.maven.plugins:maven-scm-plugin from 2.0.1 to 2.1.0 Bumps [org.apache.maven.plugins:maven-scm-plugin](https://github.com/apache/maven-scm) from 2.0.1 to 2.1.0. - [Commits](https://github.com/apache/maven-scm/compare/maven-scm-2.0.1...maven-scm-2.1.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-scm-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 22f4667f..8d31e397 100644 --- a/pom.xml +++ b/pom.xml @@ -128,7 +128,7 @@ under the License. 3.0.1 3.2.0 3.3.1 - 2.0.1 + 2.1.0 3.2.1 3.5.2 3.12.1 From c124276ad15e2eb05fde5029e8e2e6187bf05053 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Apr 2024 23:45:26 +0800 Subject: [PATCH 41/74] Bump org.apache.maven.plugins:maven-jar-plugin from 3.4.0 to 3.4.1 (#217) Bumps [org.apache.maven.plugins:maven-jar-plugin](https://github.com/apache/maven-jar-plugin) from 3.4.0 to 3.4.1. - [Release notes](https://github.com/apache/maven-jar-plugin/releases) - [Commits](https://github.com/apache/maven-jar-plugin/compare/maven-jar-plugin-3.4.0...maven-jar-plugin-3.4.1) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-jar-plugin 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 8d31e397..0fc8e900 100644 --- a/pom.xml +++ b/pom.xml @@ -121,7 +121,7 @@ under the License. 3.4.0 3.1.1 3.6.1 - 3.4.0 + 3.4.1 3.6.3 3.12.0 3.5.0 From c9cf7758e09959dc6c36fec9ce741fa4904d418c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 May 2024 18:21:07 +0800 Subject: [PATCH 42/74] Bump org.apache.maven.plugins:maven-install-plugin from 3.1.1 to 3.1.2 (#222) Bumps [org.apache.maven.plugins:maven-install-plugin](https://github.com/apache/maven-install-plugin) from 3.1.1 to 3.1.2. - [Release notes](https://github.com/apache/maven-install-plugin/releases) - [Commits](https://github.com/apache/maven-install-plugin/compare/maven-install-plugin-3.1.1...maven-install-plugin-3.1.2) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-install-plugin 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 0fc8e900..8682d3c5 100644 --- a/pom.xml +++ b/pom.xml @@ -119,7 +119,7 @@ under the License. 3.4.1 3.2.3 3.4.0 - 3.1.1 + 3.1.2 3.6.1 3.4.1 3.6.3 From a3c528c48c768c6077231f978dc7962471d774d7 Mon Sep 17 00:00:00 2001 From: Slawomir Jaranowski Date: Mon, 22 Apr 2024 21:47:14 +0200 Subject: [PATCH 43/74] Fix link in issueManagement in docs --- docs/pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/pom.xml b/docs/pom.xml index ae9b9637..02eb09e2 100644 --- a/docs/pom.xml +++ b/docs/pom.xml @@ -46,8 +46,8 @@ under the License. - jira - https://issues.apache.org/jira/issues/?jql=project%3DMPOM+AND+component%3Dasf + GitHub + https://github.com/apache/maven-apache-parent/issues From 0abc60914a53b200df4d3cca0d353abdf4355489 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Apr 2024 04:18:17 +0000 Subject: [PATCH 44/74] Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.3 to 3.2.4 Bumps [org.apache.maven.plugins:maven-gpg-plugin](https://github.com/apache/maven-gpg-plugin) from 3.2.3 to 3.2.4. - [Release notes](https://github.com/apache/maven-gpg-plugin/releases) - [Commits](https://github.com/apache/maven-gpg-plugin/compare/maven-gpg-plugin-3.2.3...maven-gpg-plugin-3.2.4) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-gpg-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8682d3c5..0f84b0f1 100644 --- a/pom.xml +++ b/pom.xml @@ -117,7 +117,7 @@ under the License. 3.1.1 3.3.0 3.4.1 - 3.2.3 + 3.2.4 3.4.0 3.1.2 3.6.1 From 78edf1a177ea7034c95679d8f6d1632fc86aec39 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 30 Apr 2024 04:08:43 +0000 Subject: [PATCH 45/74] Bump org.apache.maven.plugins:maven-deploy-plugin from 3.1.1 to 3.1.2 Bumps [org.apache.maven.plugins:maven-deploy-plugin](https://github.com/apache/maven-deploy-plugin) from 3.1.1 to 3.1.2. - [Release notes](https://github.com/apache/maven-deploy-plugin/releases) - [Commits](https://github.com/apache/maven-deploy-plugin/compare/maven-deploy-plugin-3.1.1...maven-deploy-plugin-3.1.2) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-deploy-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0f84b0f1..d6ed1420 100644 --- a/pom.xml +++ b/pom.xml @@ -114,7 +114,7 @@ under the License. 3.3.1 3.13.0 3.6.1 - 3.1.1 + 3.1.2 3.3.0 3.4.1 3.2.4 From 3618721dcf0b965ce7948b621ae3fdeb1895ef15 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 May 2024 04:46:54 +0000 Subject: [PATCH 46/74] Bump org.apache.maven.plugins:maven-invoker-plugin from 3.6.1 to 3.7.0 Bumps [org.apache.maven.plugins:maven-invoker-plugin](https://github.com/apache/maven-invoker-plugin) from 3.6.1 to 3.7.0. - [Release notes](https://github.com/apache/maven-invoker-plugin/releases) - [Commits](https://github.com/apache/maven-invoker-plugin/compare/maven-invoker-plugin-3.6.1...maven-invoker-plugin-3.7.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-invoker-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d6ed1420..687d337a 100644 --- a/pom.xml +++ b/pom.xml @@ -120,7 +120,7 @@ under the License. 3.2.4 3.4.0 3.1.2 - 3.6.1 + 3.7.0 3.4.1 3.6.3 3.12.0 From f3ad5d8172baf418231fe466f6ac8511a44625bf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Jun 2024 04:02:37 +0000 Subject: [PATCH 47/74] Bump version.maven-plugin-tools from 3.12.0 to 3.13.1 Bumps `version.maven-plugin-tools` from 3.12.0 to 3.13.1. Updates `org.apache.maven.plugin-tools:maven-plugin-annotations` from 3.12.0 to 3.13.1 - [Release notes](https://github.com/apache/maven-plugin-tools/releases) - [Commits](https://github.com/apache/maven-plugin-tools/compare/maven-plugin-tools-3.12.0...maven-plugin-tools-3.13.1) Updates `org.apache.maven.plugins:maven-plugin-plugin` from 3.12.0 to 3.13.1 - [Release notes](https://github.com/apache/maven-plugin-tools/releases) - [Commits](https://github.com/apache/maven-plugin-tools/compare/maven-plugin-tools-3.12.0...maven-plugin-tools-3.13.1) Updates `org.apache.maven.plugins:maven-plugin-report-plugin` from 3.12.0 to 3.13.1 - [Release notes](https://github.com/apache/maven-plugin-tools/releases) - [Commits](https://github.com/apache/maven-plugin-tools/compare/maven-plugin-tools-3.12.0...maven-plugin-tools-3.13.1) --- updated-dependencies: - dependency-name: org.apache.maven.plugin-tools:maven-plugin-annotations dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.apache.maven.plugins:maven-plugin-plugin dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.apache.maven.plugins:maven-plugin-report-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 687d337a..fff156ef 100644 --- a/pom.xml +++ b/pom.xml @@ -123,7 +123,7 @@ under the License. 3.7.0 3.4.1 3.6.3 - 3.12.0 + 3.13.1 3.5.0 3.0.1 3.2.0 From 311d49121649142ead54b64e70ba8a78b16dac2e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 8 Jun 2024 15:03:24 +0000 Subject: [PATCH 48/74] Bump org.apache.maven.plugins:maven-enforcer-plugin from 3.4.1 to 3.5.0 Bumps [org.apache.maven.plugins:maven-enforcer-plugin](https://github.com/apache/maven-enforcer) from 3.4.1 to 3.5.0. - [Release notes](https://github.com/apache/maven-enforcer/releases) - [Commits](https://github.com/apache/maven-enforcer/compare/enforcer-3.4.1...enforcer-3.5.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-enforcer-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index fff156ef..70143cbb 100644 --- a/pom.xml +++ b/pom.xml @@ -116,7 +116,7 @@ under the License. 3.6.1 3.1.2 3.3.0 - 3.4.1 + 3.5.0 3.2.4 3.4.0 3.1.2 From fc5ac87bc1d7be1bb8082b2241b912231719a38b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 8 Jun 2024 15:26:34 +0000 Subject: [PATCH 49/74] Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.6.3 to 3.7.0 Bumps [org.apache.maven.plugins:maven-javadoc-plugin](https://github.com/apache/maven-javadoc-plugin) from 3.6.3 to 3.7.0. - [Release notes](https://github.com/apache/maven-javadoc-plugin/releases) - [Commits](https://github.com/apache/maven-javadoc-plugin/compare/maven-javadoc-plugin-3.6.3...maven-javadoc-plugin-3.7.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-javadoc-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 70143cbb..0491042e 100644 --- a/pom.xml +++ b/pom.xml @@ -122,7 +122,7 @@ under the License. 3.1.2 3.7.0 3.4.1 - 3.6.3 + 3.7.0 3.13.1 3.5.0 3.0.1 From a901cd9d04d114655df5863233c2292c0bd9f627 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Jun 2024 04:02:44 +0000 Subject: [PATCH 50/74] Bump org.apache.maven.plugins:maven-shade-plugin from 3.5.2 to 3.6.0 Bumps [org.apache.maven.plugins:maven-shade-plugin](https://github.com/apache/maven-shade-plugin) from 3.5.2 to 3.6.0. - [Release notes](https://github.com/apache/maven-shade-plugin/releases) - [Commits](https://github.com/apache/maven-shade-plugin/compare/maven-shade-plugin-3.5.2...maven-shade-plugin-3.6.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-shade-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0491042e..f91c7026 100644 --- a/pom.xml +++ b/pom.xml @@ -130,7 +130,7 @@ under the License. 3.3.1 2.1.0 3.2.1 - 3.5.2 + 3.6.0 3.12.1 3.3.1 ${surefire.version} From 7f70e994d706f322aa02a06661abd12d3f307dee Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 6 Jun 2024 04:09:56 +0000 Subject: [PATCH 51/74] Bump org.apache.maven.plugins:maven-checkstyle-plugin Bumps [org.apache.maven.plugins:maven-checkstyle-plugin](https://github.com/apache/maven-checkstyle-plugin) from 3.3.1 to 3.4.0. - [Commits](https://github.com/apache/maven-checkstyle-plugin/compare/maven-checkstyle-plugin-3.3.1...maven-checkstyle-plugin-3.4.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-checkstyle-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f91c7026..6f380357 100644 --- a/pom.xml +++ b/pom.xml @@ -111,7 +111,7 @@ under the License. 3.1.0 3.7.1 3.3.2 - 3.3.1 + 3.4.0 3.13.0 3.6.1 3.1.2 From 29feb898fec2765dad9c4f263e77dad94f0aa789 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 8 Jun 2024 15:03:29 +0000 Subject: [PATCH 52/74] Bump org.apache.maven.plugins:maven-help-plugin from 3.4.0 to 3.4.1 Bumps [org.apache.maven.plugins:maven-help-plugin](https://github.com/apache/maven-help-plugin) from 3.4.0 to 3.4.1. - [Commits](https://github.com/apache/maven-help-plugin/compare/maven-help-plugin-3.4.0...maven-help-plugin-3.4.1) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-help-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6f380357..8769b016 100644 --- a/pom.xml +++ b/pom.xml @@ -118,7 +118,7 @@ under the License. 3.3.0 3.5.0 3.2.4 - 3.4.0 + 3.4.1 3.1.2 3.7.0 3.4.1 From 08bd70bbfda55a20c05357f7e4d8ec794597df11 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 12 Jun 2024 04:53:14 +0000 Subject: [PATCH 53/74] Bump org.apache.maven.plugins:maven-dependency-plugin Bumps [org.apache.maven.plugins:maven-dependency-plugin](https://github.com/apache/maven-dependency-plugin) from 3.6.1 to 3.7.0. - [Release notes](https://github.com/apache/maven-dependency-plugin/releases) - [Commits](https://github.com/apache/maven-dependency-plugin/compare/maven-dependency-plugin-3.6.1...maven-dependency-plugin-3.7.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-dependency-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8769b016..8f64ac5f 100644 --- a/pom.xml +++ b/pom.xml @@ -113,7 +113,7 @@ under the License. 3.3.2 3.4.0 3.13.0 - 3.6.1 + 3.7.0 3.1.2 3.3.0 3.5.0 From f8f8594297281e8a545081f89c5b18f52ca5727a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Jun 2024 04:08:37 +0000 Subject: [PATCH 54/74] Bump org.apache.maven.plugins:maven-release-plugin from 3.0.1 to 3.1.0 Bumps [org.apache.maven.plugins:maven-release-plugin](https://github.com/apache/maven-release) from 3.0.1 to 3.1.0. - [Release notes](https://github.com/apache/maven-release/releases) - [Commits](https://github.com/apache/maven-release/compare/maven-release-3.0.1...maven-release-3.1.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-release-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8f64ac5f..48c248d2 100644 --- a/pom.xml +++ b/pom.xml @@ -125,7 +125,7 @@ under the License. 3.7.0 3.13.1 3.5.0 - 3.0.1 + 3.1.0 3.2.0 3.3.1 2.1.0 From 4dc3f2e63024db1d8f601524b16e8343f2db6127 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Jun 2024 04:08:47 +0000 Subject: [PATCH 55/74] Bump version.maven-surefire from 3.2.5 to 3.3.0 Bumps `version.maven-surefire` from 3.2.5 to 3.3.0. Updates `org.apache.maven.plugins:maven-failsafe-plugin` from 3.2.5 to 3.3.0 - [Release notes](https://github.com/apache/maven-surefire/releases) - [Commits](https://github.com/apache/maven-surefire/compare/surefire-3.2.5...surefire-3.3.0) Updates `org.apache.maven.plugins:maven-surefire-plugin` from 3.2.5 to 3.3.0 - [Release notes](https://github.com/apache/maven-surefire/releases) - [Commits](https://github.com/apache/maven-surefire/compare/surefire-3.2.5...surefire-3.3.0) Updates `org.apache.maven.plugins:maven-surefire-report-plugin` from 3.2.5 to 3.3.0 - [Release notes](https://github.com/apache/maven-surefire/releases) - [Commits](https://github.com/apache/maven-surefire/compare/surefire-3.2.5...surefire-3.3.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-failsafe-plugin dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.apache.maven.plugins:maven-surefire-plugin dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.apache.maven.plugins:maven-surefire-report-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 48c248d2..8d0413b5 100644 --- a/pom.xml +++ b/pom.xml @@ -99,7 +99,7 @@ under the License. 1.8 ${maven.compiler.target} 7 - 3.2.5 + 3.3.0 posix 1.11.2 From ebf72c70d34dd9369b209129b04b5769513a71f5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 20 Jun 2024 04:16:46 +0000 Subject: [PATCH 56/74] Bump org.apache.maven.plugins:maven-clean-plugin from 3.3.2 to 3.4.0 Bumps [org.apache.maven.plugins:maven-clean-plugin](https://github.com/apache/maven-clean-plugin) from 3.3.2 to 3.4.0. - [Release notes](https://github.com/apache/maven-clean-plugin/releases) - [Commits](https://github.com/apache/maven-clean-plugin/compare/maven-clean-plugin-3.3.2...maven-clean-plugin-3.4.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-clean-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8d0413b5..f0d8c5e1 100644 --- a/pom.xml +++ b/pom.xml @@ -110,7 +110,7 @@ under the License. 1.11 3.1.0 3.7.1 - 3.3.2 + 3.4.0 3.4.0 3.13.0 3.7.0 From b0859df76c581b93bee1ece9b079f30497199b36 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 20 Jun 2024 04:16:53 +0000 Subject: [PATCH 57/74] Bump org.apache.maven.plugins:maven-jar-plugin from 3.4.1 to 3.4.2 Bumps [org.apache.maven.plugins:maven-jar-plugin](https://github.com/apache/maven-jar-plugin) from 3.4.1 to 3.4.2. - [Release notes](https://github.com/apache/maven-jar-plugin/releases) - [Commits](https://github.com/apache/maven-jar-plugin/compare/maven-jar-plugin-3.4.1...maven-jar-plugin-3.4.2) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-jar-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f0d8c5e1..f5f472a7 100644 --- a/pom.xml +++ b/pom.xml @@ -121,7 +121,7 @@ under the License. 3.4.1 3.1.2 3.7.0 - 3.4.1 + 3.4.2 3.7.0 3.13.1 3.5.0 From 6b7a7edad1cab327b487e456675799c5c21183b9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 21 Jun 2024 04:32:40 +0000 Subject: [PATCH 58/74] Bump org.apache.maven.plugins:maven-scm-publish-plugin Bumps [org.apache.maven.plugins:maven-scm-publish-plugin](https://github.com/apache/maven-scm-publish-plugin) from 3.2.1 to 3.3.0. - [Commits](https://github.com/apache/maven-scm-publish-plugin/compare/maven-scm-publish-plugin-3.2.1...maven-scm-publish-plugin-3.3.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-scm-publish-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f5f472a7..42f9d83c 100644 --- a/pom.xml +++ b/pom.xml @@ -129,7 +129,7 @@ under the License. 3.2.0 3.3.1 2.1.0 - 3.2.1 + 3.3.0 3.6.0 3.12.1 3.3.1 From 6058d436b71b493ca79bbb7cc463e68f683f8e4c Mon Sep 17 00:00:00 2001 From: Michael Osipov Date: Wed, 3 Jul 2024 13:46:30 +0200 Subject: [PATCH 59/74] Upgrade to Maven Fluido Skin 1.12.0 --- docs/src/site/site.xml | 1 - pom.xml | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/src/site/site.xml b/docs/src/site/site.xml index a7617751..503d08c5 100644 --- a/docs/src/site/site.xml +++ b/docs/src/site/site.xml @@ -23,7 +23,6 @@ under the License. xsi:schemaLocation="http://maven.apache.org/DECORATION/1.8.1 https://maven.apache.org/xsd/decoration-1.8.1.xsd"> - ${project.name} https://maven.apache.org/images/apache-maven-project.png https://www.apache.org/ diff --git a/pom.xml b/pom.xml index 42f9d83c..3f208094 100644 --- a/pom.xml +++ b/pom.xml @@ -102,7 +102,6 @@ under the License. 3.3.0 posix - 1.11.2 2024-04-13T16:31:35Z 0.16.1 @@ -117,6 +116,7 @@ under the License. 3.1.2 3.3.0 3.5.0 + 1.12.0 3.2.4 3.4.1 3.1.2 From b965a56018767bd261c6210245ff273ea42c9f34 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 3 Jul 2024 18:03:37 +0000 Subject: [PATCH 60/74] Bump org.apache.maven.plugins:maven-project-info-reports-plugin Bumps [org.apache.maven.plugins:maven-project-info-reports-plugin](https://github.com/apache/maven-project-info-reports-plugin) from 3.5.0 to 3.6.1. - [Commits](https://github.com/apache/maven-project-info-reports-plugin/compare/maven-project-info-reports-plugin-3.5.0...maven-project-info-reports-plugin-3.6.1) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-project-info-reports-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3f208094..b079d48d 100644 --- a/pom.xml +++ b/pom.xml @@ -124,7 +124,7 @@ under the License. 3.4.2 3.7.0 3.13.1 - 3.5.0 + 3.6.1 3.1.0 3.2.0 3.3.1 From d9ff572d5c5b61f1c7d60c2549a7b8868d13f3a2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 3 Jul 2024 18:04:34 +0000 Subject: [PATCH 61/74] Bump org.apache.maven.plugins:maven-dependency-plugin Bumps [org.apache.maven.plugins:maven-dependency-plugin](https://github.com/apache/maven-dependency-plugin) from 3.7.0 to 3.7.1. - [Release notes](https://github.com/apache/maven-dependency-plugin/releases) - [Commits](https://github.com/apache/maven-dependency-plugin/compare/maven-dependency-plugin-3.7.0...maven-dependency-plugin-3.7.1) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-dependency-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b079d48d..d02e04fc 100644 --- a/pom.xml +++ b/pom.xml @@ -112,7 +112,7 @@ under the License. 3.4.0 3.4.0 3.13.0 - 3.7.0 + 3.7.1 3.1.2 3.3.0 3.5.0 From e94b6f8f03687430654248d69e02bb7ff99f51d4 Mon Sep 17 00:00:00 2001 From: Slawomir Jaranowski Date: Tue, 2 Jul 2024 23:51:19 +0200 Subject: [PATCH 62/74] Disable matrix build on GitHub --- .github/workflows/maven-verify.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/maven-verify.yml b/.github/workflows/maven-verify.yml index 932827cf..29acf203 100644 --- a/.github/workflows/maven-verify.yml +++ b/.github/workflows/maven-verify.yml @@ -25,3 +25,6 @@ jobs: build: name: Verify uses: apache/maven-gh-actions-shared/.github/workflows/maven-verify.yml@v4 + with: + matrix-enabled: false + From 77eedfa177d44fb97f757e110016dc4194dde770 Mon Sep 17 00:00:00 2001 From: Slawomir Jaranowski Date: Thu, 4 Jul 2024 20:52:48 +0200 Subject: [PATCH 63/74] [maven-release-plugin] prepare release apache-33 --- docs/pom.xml | 2 +- pom.xml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/pom.xml b/docs/pom.xml index 02eb09e2..2fba2c34 100644 --- a/docs/pom.xml +++ b/docs/pom.xml @@ -25,7 +25,7 @@ under the License. org.apache apache - 33-SNAPSHOT + 33 docs diff --git a/pom.xml b/pom.xml index d02e04fc..b03121dd 100644 --- a/pom.xml +++ b/pom.xml @@ -25,7 +25,7 @@ under the License. org.apache apache - 33-SNAPSHOT + 33 pom The Apache Software Foundation @@ -67,7 +67,7 @@ under the License. scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git https://github.com/apache/maven-apache-parent/tree/${project.scm.tag} - HEAD + apache-33 @@ -102,7 +102,7 @@ under the License. 3.3.0 posix - 2024-04-13T16:31:35Z + 2024-07-04T18:52:46Z 0.16.1 1.5 From 67b9c7ea70fbe847116831c0a4bbcb8862f444b5 Mon Sep 17 00:00:00 2001 From: Slawomir Jaranowski Date: Thu, 4 Jul 2024 20:52:57 +0200 Subject: [PATCH 64/74] [maven-release-plugin] prepare for next development iteration --- docs/pom.xml | 2 +- pom.xml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/pom.xml b/docs/pom.xml index 2fba2c34..72105008 100644 --- a/docs/pom.xml +++ b/docs/pom.xml @@ -25,7 +25,7 @@ under the License. org.apache apache - 33 + 34-SNAPSHOT docs diff --git a/pom.xml b/pom.xml index b03121dd..de35f7f9 100644 --- a/pom.xml +++ b/pom.xml @@ -25,7 +25,7 @@ under the License. org.apache apache - 33 + 34-SNAPSHOT pom The Apache Software Foundation @@ -67,7 +67,7 @@ under the License. scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git https://github.com/apache/maven-apache-parent/tree/${project.scm.tag} - apache-33 + HEAD @@ -102,7 +102,7 @@ under the License. 3.3.0 posix - 2024-07-04T18:52:46Z + 2024-07-04T18:52:57Z 0.16.1 1.5 From b6149240303a5d8cd59413b1544125548e752d21 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 26 Jul 2024 04:29:00 +0000 Subject: [PATCH 65/74] Bump org.apache.apache.resources:apache-source-release-assembly-descriptor Bumps org.apache.apache.resources:apache-source-release-assembly-descriptor from 1.5 to 1.7. --- updated-dependencies: - dependency-name: org.apache.apache.resources:apache-source-release-assembly-descriptor dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index de35f7f9..69d170a2 100644 --- a/pom.xml +++ b/pom.xml @@ -105,7 +105,7 @@ under the License. 2024-07-04T18:52:57Z 0.16.1 - 1.5 + 1.7 1.11 3.1.0 3.7.1 From ded34a863110021191af2db5b772b665a2789394 Mon Sep 17 00:00:00 2001 From: Konrad Windszus Date: Fri, 16 Aug 2024 12:18:38 +0200 Subject: [PATCH 66/74] By default target Java 8 Adjust minimalJavaBuildVersion to be in line with target bytecode version. This closes #250 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 69d170a2..33200cb8 100644 --- a/pom.xml +++ b/pom.xml @@ -96,9 +96,9 @@ under the License. source-release true 3.6.3 - 1.8 + ${maven.compiler.target} ${maven.compiler.target} - 7 + 8 3.3.0 posix From 9e3334340b7589b392ded9a2b0175f3b83548d8d Mon Sep 17 00:00:00 2001 From: Guillaume Nodet Date: Mon, 9 Sep 2024 08:47:40 +0200 Subject: [PATCH 67/74] Remove dependency management from apache parent (fixes #265) (#266) --- pom.xml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/pom.xml b/pom.xml index 33200cb8..95a67468 100644 --- a/pom.xml +++ b/pom.xml @@ -137,16 +137,6 @@ under the License. 3.4.0 - - - - org.apache.maven.plugin-tools - maven-plugin-annotations - ${version.maven-plugin-tools} - - - - apache.snapshots From c5149287750c4070d8404f4dd08fa61b4076a714 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Jul 2024 04:50:30 +0000 Subject: [PATCH 68/74] Bump org.apache.maven.plugins:maven-release-plugin from 3.1.0 to 3.1.1 Bumps [org.apache.maven.plugins:maven-release-plugin](https://github.com/apache/maven-release) from 3.1.0 to 3.1.1. - [Release notes](https://github.com/apache/maven-release/releases) - [Commits](https://github.com/apache/maven-release/compare/maven-release-3.1.0...maven-release-3.1.1) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-release-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 95a67468..acf3801d 100644 --- a/pom.xml +++ b/pom.xml @@ -125,7 +125,7 @@ under the License. 3.7.0 3.13.1 3.6.1 - 3.1.0 + 3.1.1 3.2.0 3.3.1 2.1.0 From 2fbb4d7c0f21ef186033d39e44d87992af0a906b Mon Sep 17 00:00:00 2001 From: Elliotte Rusty Harold Date: Sat, 30 Nov 2024 15:58:23 +0000 Subject: [PATCH 69/74] fix typo (#277) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 98f69476..debf2a54 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ There are some guidelines which will make applying PRs easier for us: + Check for unnecessary whitespace with `git diff --check` before committing. + Make sure your commit messages are in the proper format. Your commit message should contain the key of the issue. ``` -[#issue-numebr] - Subject of the issue +[#issue-number] - Subject of the issue Optional supplemental description. ``` + Update the [site documentation](https://maven.apache.org/pom/asf/) accordingly in `docs/src/site` and build it via `mvn site -f docs` From 43078d6ecd5c7bbb370c85a8faea570ea1642921 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 6 Dec 2024 15:43:02 +0100 Subject: [PATCH 70/74] Bump org.apache.maven.plugins:maven-install-plugin from 3.1.2 to 3.1.3 (#255) Bumps [org.apache.maven.plugins:maven-install-plugin](https://github.com/apache/maven-install-plugin) from 3.1.2 to 3.1.3. - [Release notes](https://github.com/apache/maven-install-plugin/releases) - [Commits](https://github.com/apache/maven-install-plugin/compare/maven-install-plugin-3.1.2...maven-install-plugin-3.1.3) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-install-plugin 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 acf3801d..3a76d3ac 100644 --- a/pom.xml +++ b/pom.xml @@ -119,7 +119,7 @@ under the License. 1.12.0 3.2.4 3.4.1 - 3.1.2 + 3.1.3 3.7.0 3.4.2 3.7.0 From 08ce95072b8368feb9343b0b4fb4a18ec837e801 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 6 Dec 2024 15:43:21 +0100 Subject: [PATCH 71/74] Bump org.apache.maven.plugins:maven-deploy-plugin from 3.1.2 to 3.1.3 (#256) Bumps [org.apache.maven.plugins:maven-deploy-plugin](https://github.com/apache/maven-deploy-plugin) from 3.1.2 to 3.1.3. - [Release notes](https://github.com/apache/maven-deploy-plugin/releases) - [Commits](https://github.com/apache/maven-deploy-plugin/compare/maven-deploy-plugin-3.1.2...maven-deploy-plugin-3.1.3) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-deploy-plugin 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 3a76d3ac..4d6a318c 100644 --- a/pom.xml +++ b/pom.xml @@ -113,7 +113,7 @@ under the License. 3.4.0 3.13.0 3.7.1 - 3.1.2 + 3.1.3 3.3.0 3.5.0 1.12.0 From 888eb25dff5da556ccc7ee6e3ff73c16221e81d3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 6 Dec 2024 15:43:40 +0100 Subject: [PATCH 72/74] Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.4 to 3.2.7 (#268) Bumps [org.apache.maven.plugins:maven-gpg-plugin](https://github.com/apache/maven-gpg-plugin) from 3.2.4 to 3.2.7. - [Release notes](https://github.com/apache/maven-gpg-plugin/releases) - [Commits](https://github.com/apache/maven-gpg-plugin/compare/maven-gpg-plugin-3.2.4...maven-gpg-plugin-3.2.7) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-gpg-plugin 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 4d6a318c..ce1d52ba 100644 --- a/pom.xml +++ b/pom.xml @@ -117,7 +117,7 @@ under the License. 3.3.0 3.5.0 1.12.0 - 3.2.4 + 3.2.7 3.4.1 3.1.3 3.7.0 From 2102c2ff3a7423e5477183e3631c430e5e9c42ee Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 6 Dec 2024 15:46:42 +0100 Subject: [PATCH 73/74] Bump version.maven-surefire from 3.3.0 to 3.5.2 (#274) Bumps `version.maven-surefire` from 3.3.0 to 3.5.2. Updates `org.apache.maven.plugins:maven-failsafe-plugin` from 3.3.0 to 3.5.2 - [Release notes](https://github.com/apache/maven-surefire/releases) - [Commits](https://github.com/apache/maven-surefire/compare/surefire-3.3.0...surefire-3.5.2) Updates `org.apache.maven.plugins:maven-surefire-plugin` from 3.3.0 to 3.5.2 - [Release notes](https://github.com/apache/maven-surefire/releases) - [Commits](https://github.com/apache/maven-surefire/compare/surefire-3.3.0...surefire-3.5.2) Updates `org.apache.maven.plugins:maven-surefire-report-plugin` from 3.3.0 to 3.5.2 - [Release notes](https://github.com/apache/maven-surefire/releases) - [Commits](https://github.com/apache/maven-surefire/compare/surefire-3.3.0...surefire-3.5.2) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-failsafe-plugin dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.apache.maven.plugins:maven-surefire-plugin dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.apache.maven.plugins:maven-surefire-report-plugin 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 ce1d52ba..f2f846de 100644 --- a/pom.xml +++ b/pom.xml @@ -99,7 +99,7 @@ under the License. ${maven.compiler.target} ${maven.compiler.target} 8 - 3.3.0 + 3.5.2 posix 2024-07-04T18:52:57Z From 477dc35871c1c8612cf79ee784950485990acf1b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 6 Dec 2024 15:46:58 +0100 Subject: [PATCH 74/74] Bump org.apache.maven.plugins:maven-help-plugin from 3.4.1 to 3.5.1 (#272) Bumps [org.apache.maven.plugins:maven-help-plugin](https://github.com/apache/maven-help-plugin) from 3.4.1 to 3.5.1. - [Commits](https://github.com/apache/maven-help-plugin/compare/maven-help-plugin-3.4.1...maven-help-plugin-3.5.1) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-help-plugin 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> Co-authored-by: Guillaume Nodet --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f2f846de..490f2bd5 100644 --- a/pom.xml +++ b/pom.xml @@ -118,7 +118,7 @@ under the License. 3.5.0 1.12.0 3.2.7 - 3.4.1 + 3.5.1 3.1.3 3.7.0 3.4.2