From 4913aa89f143fdcfd4dee9434a34a18bd6808e45 Mon Sep 17 00:00:00 2001 From: John Casey Date: Thu, 20 Jun 2019 10:44:20 -0500 Subject: [PATCH 01/48] add snapshots repo, and allow that one repo in the enforcer config --- pom.xml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 39e04ff..f3156c5 100644 --- a/pom.xml +++ b/pom.xml @@ -197,7 +197,10 @@ ${enforceBestPractices} - + + sonatype-snapshots + true + @@ -499,4 +502,13 @@ + + + sonatype-snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + false + true + + + From e3b46fd77d5d6622f2f386856a570601cb73012e Mon Sep 17 00:00:00 2001 From: John Casey Date: Thu, 20 Jun 2019 10:44:47 -0500 Subject: [PATCH 02/48] [maven-release-plugin] prepare release commonjava-14 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index f3156c5..e60c1b6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.commonjava commonjava - 14-SNAPSHOT + 14 pom CommonJava Top-Level Parent POM @@ -50,7 +50,7 @@ scm:git:https://github.com/Commonjava/commonjava.git scm:git:git@github.com:Commonjava/commonjava.git http://github.com/Commonjava/commonjava - HEAD + commonjava-14 From 9e087de9e2455ffdef397f4b9744dc6513178d53 Mon Sep 17 00:00:00 2001 From: John Casey Date: Thu, 20 Jun 2019 10:44:53 -0500 Subject: [PATCH 03/48] [maven-release-plugin] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index e60c1b6..f7c2d62 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.commonjava commonjava - 14 + 15-SNAPSHOT pom CommonJava Top-Level Parent POM @@ -50,7 +50,7 @@ scm:git:https://github.com/Commonjava/commonjava.git scm:git:git@github.com:Commonjava/commonjava.git http://github.com/Commonjava/commonjava - commonjava-14 + HEAD From 76f675da619fd5bd32f87dc0f0c590816af80fbd Mon Sep 17 00:00:00 2001 From: Rui Han Date: Tue, 13 Aug 2019 13:24:10 +0800 Subject: [PATCH 04/48] Add Jenkinsfile --- Jenkinsfile | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..d72cdae --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,25 @@ +pipeline { + agent { label 'maven' } + stages { + stage('Prepare') { + steps { + sh 'printenv' + } + } + stage('Build') { + when { + expression { env.CHANGE_ID != null } // Pull request + } + steps { + sh 'mvn -B -V clean verify -Prun-its -Pci' + } + } + stage('Deploy') { + when { branch 'master' } + steps { + echo "Deploy" + sh 'mvn help:effective-settings -B -V clean deploy -e -s ~/sonatype/settings.xml' + } + } + } +} From 10b30a04639ec5a61add86f11b87b84fceb4a85e Mon Sep 17 00:00:00 2001 From: John Casey Date: Fri, 6 Sep 2019 09:52:28 -0500 Subject: [PATCH 05/48] turn off javadoc linting --- pom.xml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pom.xml b/pom.xml index f7c2d62..da255a9 100644 --- a/pom.xml +++ b/pom.xml @@ -310,6 +310,10 @@ false + + -Xdoclint:none + -Xdoclint:none + -Xdoclint:none From 1b545efff9d5aca03cd1484f2690b650ce8cd56a Mon Sep 17 00:00:00 2001 From: John Casey Date: Fri, 6 Sep 2019 09:52:51 -0500 Subject: [PATCH 06/48] [maven-release-plugin] prepare release commonjava-15 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index da255a9..6dc92f9 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.commonjava commonjava - 15-SNAPSHOT + 15 pom CommonJava Top-Level Parent POM @@ -50,7 +50,7 @@ scm:git:https://github.com/Commonjava/commonjava.git scm:git:git@github.com:Commonjava/commonjava.git http://github.com/Commonjava/commonjava - HEAD + commonjava-15 From 21bc94746265dc7505bf0a35e5c8b0876620563d Mon Sep 17 00:00:00 2001 From: John Casey Date: Fri, 6 Sep 2019 09:52:58 -0500 Subject: [PATCH 07/48] [maven-release-plugin] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 6dc92f9..58a107a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.commonjava commonjava - 15 + 16-SNAPSHOT pom CommonJava Top-Level Parent POM @@ -50,7 +50,7 @@ scm:git:https://github.com/Commonjava/commonjava.git scm:git:git@github.com:Commonjava/commonjava.git http://github.com/Commonjava/commonjava - commonjava-15 + HEAD From c180d2058bb695b151c35c1ae551089d6e0f709d Mon Sep 17 00:00:00 2001 From: John Casey Date: Wed, 2 Oct 2019 17:15:26 -0500 Subject: [PATCH 08/48] remove settings specification to use default settings instead (#27) --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index d72cdae..d7dcc28 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -18,7 +18,7 @@ pipeline { when { branch 'master' } steps { echo "Deploy" - sh 'mvn help:effective-settings -B -V clean deploy -e -s ~/sonatype/settings.xml' + sh 'mvn help:effective-settings -B -V clean deploy -e' } } } From d75d520962816a8ca3890a69d81dc52a913ed2f4 Mon Sep 17 00:00:00 2001 From: John Casey Date: Wed, 9 Oct 2019 17:05:26 -0500 Subject: [PATCH 09/48] update deploy plugin to allow separation of alternative deploy repos for releases/snapshots (#28) --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 58a107a..bb1ebd7 100644 --- a/pom.xml +++ b/pom.xml @@ -72,7 +72,7 @@ 2.18.1 2.18.1 2.5 - 2.7 + 2.8.2 2.4 2.6 3.3 From 805dd85540b972876a1066211cfbf44cfdc4b016 Mon Sep 17 00:00:00 2001 From: John Casey Date: Mon, 14 Oct 2019 16:49:38 -0500 Subject: [PATCH 10/48] [maven-release-plugin] prepare release commonjava-16 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index bb1ebd7..1b5b2b2 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.commonjava commonjava - 16-SNAPSHOT + 16 pom CommonJava Top-Level Parent POM @@ -50,7 +50,7 @@ scm:git:https://github.com/Commonjava/commonjava.git scm:git:git@github.com:Commonjava/commonjava.git http://github.com/Commonjava/commonjava - HEAD + commonjava-16 From 8f521f16aa7fe3154d8a8b82176d00bc7418e1fb Mon Sep 17 00:00:00 2001 From: John Casey Date: Mon, 14 Oct 2019 16:49:44 -0500 Subject: [PATCH 11/48] [maven-release-plugin] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 1b5b2b2..e1b3eae 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.commonjava commonjava - 16 + 17-SNAPSHOT pom CommonJava Top-Level Parent POM @@ -50,7 +50,7 @@ scm:git:https://github.com/Commonjava/commonjava.git scm:git:git@github.com:Commonjava/commonjava.git http://github.com/Commonjava/commonjava - commonjava-16 + HEAD From 6bb7e3a6a2ddd4e697e611c42b6ff765f5992df3 Mon Sep 17 00:00:00 2001 From: John Casey Date: Thu, 20 Feb 2020 16:36:14 -0600 Subject: [PATCH 12/48] make the default source/target version 1.8 (#29) --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e1b3eae..b7e49d8 100644 --- a/pom.xml +++ b/pom.xml @@ -54,7 +54,7 @@ - 1.7 + 1.8 ${javaVersion} John Casey jdcasey@commonjava.org From dffda7ba95cc229b0e822333d34b64bf40077007 Mon Sep 17 00:00:00 2001 From: Gang Li Date: Mon, 1 Mar 2021 22:38:42 +0800 Subject: [PATCH 13/48] Update plugin versions to latest --- codestyles/CommonJava.xml | 2 +- pmd-ruleset.xml | 3 +-- pom.xml | 50 +++++++++++++++++++-------------------- travis-settings.xml | 2 +- 4 files changed, 28 insertions(+), 29 deletions(-) diff --git a/codestyles/CommonJava.xml b/codestyles/CommonJava.xml index c425192..f54a4e5 100644 --- a/codestyles/CommonJava.xml +++ b/codestyles/CommonJava.xml @@ -1,6 +1,6 @@ - diff --git a/pom.xml b/pom.xml index b7e49d8..5a9c269 100644 --- a/pom.xml +++ b/pom.xml @@ -1,6 +1,6 @@ - - - - sonatype-nexus-snapshots - ${env.SONATYPE_USER} - ${env.SONATYPE_PASS} - - - - - snapshot-repo - - - sonatype-nexus-snapshots - https://oss.sonatype.org/content/repositories/snapshots - - false - - - true - - - - - - sonatype-nexus-snapshots - https://oss.sonatype.org/content/repositories/snapshots - - false - - - true - - - - - - - snapshot-repo - - \ No newline at end of file From e942138713e0f72754faa2517add7f654a567b72 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 26 Mar 2026 01:25:10 +0000 Subject: [PATCH 43/48] Bump org.apache.maven.plugins:maven-source-plugin from 3.3.0 to 3.3.1 Bumps [org.apache.maven.plugins:maven-source-plugin](https://github.com/apache/maven-source-plugin) from 3.3.0 to 3.3.1. - [Release notes](https://github.com/apache/maven-source-plugin/releases) - [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-version: 3.3.1 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 01612bd..9bf8830 100644 --- a/pom.xml +++ b/pom.xml @@ -66,7 +66,7 @@ 3.4.1 3.6.0 3.3.0 - 3.3.0 + 3.3.1 3.6.3 3.1.0 3.2.2 From d75826fdd2f3b61ad339d6bb65412a9dead70783 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 26 Mar 2026 01:25:14 +0000 Subject: [PATCH 44/48] Bump org.apache.maven.plugins:maven-install-plugin from 3.1.1 to 3.1.4 Bumps [org.apache.maven.plugins:maven-install-plugin](https://github.com/apache/maven-install-plugin) from 3.1.1 to 3.1.4. - [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.4) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-install-plugin dependency-version: 3.1.4 dependency-type: direct:development 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 01612bd..8bb0ea2 100644 --- a/pom.xml +++ b/pom.xml @@ -74,7 +74,7 @@ 3.3.2 3.1.1 0.7.0 - 3.1.1 + 3.1.4 3.3.1 3.9.1 3.21.2 From 3e0c4695c8233b39fae6622c323ff52fd49815f8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 26 Mar 2026 01:25:18 +0000 Subject: [PATCH 45/48] Bump org.apache.maven.plugins:maven-deploy-plugin from 3.1.1 to 3.1.4 Bumps [org.apache.maven.plugins:maven-deploy-plugin](https://github.com/apache/maven-deploy-plugin) from 3.1.1 to 3.1.4. - [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.4) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-deploy-plugin dependency-version: 3.1.4 dependency-type: direct:development 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 01612bd..fce6949 100644 --- a/pom.xml +++ b/pom.xml @@ -72,7 +72,7 @@ 3.2.2 3.2.2 3.3.2 - 3.1.1 + 3.1.4 0.7.0 3.1.1 3.3.1 From 479e59e576a44f84139a4f75740aed8ceadcb02d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 26 Mar 2026 01:25:23 +0000 Subject: [PATCH 46/48] Bump org.apache.maven.plugins:maven-surefire-plugin from 3.2.2 to 3.2.5 Bumps [org.apache.maven.plugins:maven-surefire-plugin](https://github.com/apache/maven-surefire) from 3.2.2 to 3.2.5. - [Release notes](https://github.com/apache/maven-surefire/releases) - [Commits](https://github.com/apache/maven-surefire/compare/surefire-3.2.2...surefire-3.2.5) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-surefire-plugin dependency-version: 3.2.5 dependency-type: direct:development 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 01612bd..a7896a9 100644 --- a/pom.xml +++ b/pom.xml @@ -69,7 +69,7 @@ 3.3.0 3.6.3 3.1.0 - 3.2.2 + 3.2.5 3.2.2 3.3.2 3.1.1 From 761ae60414b594b0a856b033cb0874b1a30f3adb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 26 Mar 2026 01:25:28 +0000 Subject: [PATCH 47/48] Bump org.jacoco:jacoco-maven-plugin from 0.8.9 to 0.8.14 Bumps [org.jacoco:jacoco-maven-plugin](https://github.com/jacoco/jacoco) from 0.8.9 to 0.8.14. - [Release notes](https://github.com/jacoco/jacoco/releases) - [Commits](https://github.com/jacoco/jacoco/compare/v0.8.9...v0.8.14) --- updated-dependencies: - dependency-name: org.jacoco:jacoco-maven-plugin dependency-version: 0.8.14 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 01612bd..3ecc0cc 100644 --- a/pom.xml +++ b/pom.xml @@ -78,7 +78,7 @@ 3.3.1 3.9.1 3.21.2 - 0.8.9 + 0.8.14 true From f164777384610e61e8f9412bcd0aa4eb66e8eed3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 26 Mar 2026 20:36:11 +0000 Subject: [PATCH 48/48] Bump org.apache.maven.plugins:maven-failsafe-plugin from 3.2.2 to 3.2.5 Bumps [org.apache.maven.plugins:maven-failsafe-plugin](https://github.com/apache/maven-surefire) from 3.2.2 to 3.2.5. - [Release notes](https://github.com/apache/maven-surefire/releases) - [Commits](https://github.com/apache/maven-surefire/compare/surefire-3.2.2...surefire-3.2.5) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-failsafe-plugin dependency-version: 3.2.5 dependency-type: direct:development 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 f633573..fb03983 100644 --- a/pom.xml +++ b/pom.xml @@ -70,7 +70,7 @@ 3.6.3 3.1.0 3.2.5 - 3.2.2 + 3.2.5 3.3.2 3.1.4 0.7.0