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

reta pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/cxf.git


The following commit(s) were added to refs/heads/main by this push:
     new 7f9d7b33f3 CXF-9178: Run Jakarta RESTful Web Services 4.0 TCK (update 
Jenkinsfile)
7f9d7b33f3 is described below

commit 7f9d7b33f320d244e8d4119a96cfd24425437d7a
Author: Andriy Redko <[email protected]>
AuthorDate: Sun Nov 23 11:03:09 2025 -0500

    CXF-9178: Run Jakarta RESTful Web Services 4.0 TCK (update Jenkinsfile)
---
 tck/Jenkinsfile | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/tck/Jenkinsfile b/tck/Jenkinsfile
index 33525f75c0..06c5bdec63 100644
--- a/tck/Jenkinsfile
+++ b/tck/Jenkinsfile
@@ -5,14 +5,14 @@ pipeline {
    
     tools { 
         maven 'maven_latest' 
-        jdk 'jdk_17_latest' 
+        jdk 'jdk_21_latest' 
     }
 
     stages {
         stage("Initialization") {
             steps {
                 script {
-                    currentBuild.displayName = "#${BUILD_NUMBER} CXF 
${params.Version} JAX-RS 3.1 TCK"
+                    currentBuild.displayName = "#${BUILD_NUMBER} CXF 
${params.Version} JAX-RS 4.0 TCK"
                 }
             }
         }
@@ -32,9 +32,10 @@ pipeline {
                     echo "WORKSPACE = ${PWD}"
                 '''
             }
-       }
+        }
+     
 
-      stage('Checkout Apache CXF') {
+        stage('Checkout Apache CXF') {
            steps {
                checkout([$class: 'GitSCM',
                    branches: [[name: 'main']],
@@ -47,7 +48,7 @@ pipeline {
        stage('Run JAX-RS TCK') {
            steps {
                 dir("${WORKSPACE}/cxf/tck/cxf-tck") {
-                    sh "mvn clean verify -Dcxf.version=${params.Version}"
+                    sh "mvn clean verify -Dcxf.version=${params.Version} -U"
                 }
            }
            
@@ -58,7 +59,7 @@ pipeline {
            }
        }
    }
-   
+
    post { 
         always {
             cleanWs()

Reply via email to