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

sjaranowski pushed a commit to branch maven-3.10.x-ci
in repository https://gitbox.apache.org/repos/asf/maven.git

commit 8c1b2a1cc3c71768eb54e94ba244c8f1e28f12cf
Author: Slawomir Jaranowski <[email protected]>
AuthorDate: Tue Mar 24 22:36:09 2026 +0100

    Configure CI for 3.10.x branch
---
 .github/workflows/maven.yml           | 6 +++---
 .github/workflows/release-drafter.yml | 5 +++--
 Jenkinsfile                           | 6 +++---
 3 files changed, 9 insertions(+), 8 deletions(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index dfb9f22f9a..bf3fdc70e2 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -53,7 +53,7 @@ jobs:
 
       - name: Set up Maven
         run:
-          mvn --errors --batch-mode --show-version 
org.apache.maven.plugins:maven-wrapper-plugin:3.3.4:wrapper "-Dmaven=3.9.11"
+          mvn --errors --batch-mode --show-version 
org.apache.maven.plugins:maven-wrapper-plugin:3.3.4:wrapper "-Dmaven=3.9.14"
 
       - name: Build with Maven
         run: ./mvnw verify -e -B -V -DdistributionFileName=apache-maven
@@ -83,7 +83,7 @@ jobs:
         run: |
           set +e
           repo=maven-integration-testing
-          target_branch=maven-3.9.x
+          target_branch=maven-3.10.x
           target_user=apache
           if [ "$GITHUB_EVENT_NAME" == "pull_request" ]; then
             user=${PR_HEAD_LABEL%:*}
@@ -139,7 +139,7 @@ jobs:
 
       - name: Set up Maven
         run:
-          mvn --errors --batch-mode --show-version 
org.apache.maven.plugins:maven-wrapper-plugin:3.3.4:wrapper "-Dmaven=3.9.11"
+          mvn --errors --batch-mode --show-version 
org.apache.maven.plugins:maven-wrapper-plugin:3.3.4:wrapper "-Dmaven=3.9.14"
 
       - name: Running integration tests
         shell: bash
diff --git a/.github/workflows/release-drafter.yml 
b/.github/workflows/release-drafter.yml
index 72e29acfc3..47ec27ed94 100644
--- a/.github/workflows/release-drafter.yml
+++ b/.github/workflows/release-drafter.yml
@@ -19,11 +19,12 @@ name: Release Drafter
 on:
   push:
     branches:
-      - maven-3.9.x
+      - maven-3.10.x
   workflow_dispatch:
 
 jobs:
    update_release_draft:
       uses: 
apache/maven-gh-actions-shared/.github/workflows/release-drafter.yml@v4
       with:
-        config-name: 'release-drafter-3.x.yml'
\ No newline at end of file
+        config-name: 'release-drafter-3.x.yml'
+        initial-commits-since: '2026-03-09T10:55:05Z' # date of first commit 
on maven-3.10.x branch, 465a93ceb620266bf88bb1a0c9d69228630a4fb6
diff --git a/Jenkinsfile b/Jenkinsfile
index 087ebb3738..4e0c92bf4a 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -17,7 +17,7 @@
  * under the License.
  */
 
-properties([buildDiscarder(logRotator(artifactNumToKeepStr: '5', numToKeepStr: 
env.BRANCH_NAME=='maven-3.9.x'?'5':'1'))])
+properties([buildDiscarder(logRotator(artifactNumToKeepStr: '5', numToKeepStr: 
env.BRANCH_NAME=='maven-3.10.x'?'5':'1'))])
 
 def buildOs = 'linux'
 def buildJdk = '21'
@@ -41,7 +41,7 @@ node(jenkinsEnv.nodeSelection(osNode)) {
         def MAVEN_GOAL='verify'
 
         stage('Configure deploy') {
-           if (env.BRANCH_NAME in ['master', 'maven-3.8.x', 'maven-3.9.x']){
+           if (env.BRANCH_NAME in ['maven-3.10.x']){
                MAVEN_GOAL='deploy'
            }
         }
@@ -94,7 +94,7 @@ for (String os in runITsOses) {
                         } catch (Throwable e) {
                           echo "Failure checkout ITs branch: ${ITS_BRANCH} - 
fallback maven-3.9.x branch"
                           checkout([$class: 'GitSCM',
-                                  branches: [[name: "maven-3.9.x"]],
+                                  branches: [[name: "maven-3.10.x"]],
                                   extensions: [[$class: 'CloneOption', depth: 
1, noTags: true, shallow: true]],
                                   userRemoteConfigs: [[url: 
'https://github.com/apache/maven-integration-testing.git']]])
                         }

Reply via email to