This is an automated email from the ASF dual-hosted git repository.
sjaranowski pushed a commit to branch maven-3.9.x
in repository https://gitbox.apache.org/repos/asf/maven.git
The following commit(s) were added to refs/heads/maven-3.9.x by this push:
new 92467d54c9 Use Maven 3.9.9 for build maven-3.9.x branch
92467d54c9 is described below
commit 92467d54c9008d68df52b1d8451447e81f87f8f2
Author: Slawomir Jaranowski <[email protected]>
AuthorDate: Sat Mar 22 20:14:29 2025 +0100
Use Maven 3.9.9 for build maven-3.9.x branch
---
.github/workflows/maven.yml | 4 ++--
Jenkinsfile | 6 +++---
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 69f129764f..5ae75e35ef 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -48,7 +48,7 @@ jobs:
- name: Set up Maven
run:
- mvn --errors --batch-mode --show-version
org.apache.maven.plugins:maven-wrapper-plugin:3.3.2:wrapper "-Dmaven=3.9.7"
+ mvn --errors --batch-mode --show-version
org.apache.maven.plugins:maven-wrapper-plugin:3.3.2:wrapper "-Dmaven=3.9.9"
- name: Build with Maven
run: ./mvnw verify -e -B -V -DdistributionFileName=apache-maven
@@ -134,7 +134,7 @@ jobs:
- name: Set up Maven
run:
- mvn --errors --batch-mode --show-version
org.apache.maven.plugins:maven-wrapper-plugin:3.3.2:wrapper "-Dmaven=3.9.7"
+ mvn --errors --batch-mode --show-version
org.apache.maven.plugins:maven-wrapper-plugin:3.3.2:wrapper "-Dmaven=3.9.9"
- name: Running integration tests
shell: bash
diff --git a/Jenkinsfile b/Jenkinsfile
index 3fd3a0a5dd..7f9c7c2e26 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -17,14 +17,14 @@
* under the License.
*/
-properties([buildDiscarder(logRotator(artifactNumToKeepStr: '5', numToKeepStr:
env.BRANCH_NAME=='master'?'5':'1'))])
+properties([buildDiscarder(logRotator(artifactNumToKeepStr: '5', numToKeepStr:
env.BRANCH_NAME=='maven-3.9.x'?'5':'1'))])
def buildOs = 'linux'
def buildJdk = '8'
-def buildMvn = '3.6.3'
+def buildMvn = '3.9.9'
def runITsOses = ['linux']
def runITsJdks = ['8', '11', '17']
-def runITsMvn = '3.6.3'
+def runITsMvn = '3.9.9'
def runITscommand = "mvn clean install -Prun-its,embedded -B -U -V" //
-DmavenDistro=... -Dmaven.test.failure.ignore=true
def tests