|
41 | 41 | stage('Build target-platform') { |
42 | 42 | timeout(time: 1, unit: 'HOURS') { |
43 | 43 | dir("kura") { |
44 | | - withMaven(jdk: 'temurin-jdk21-latest', maven: 'apache-maven-3.9.6', options: [artifactsPublisher(disabled: true)]) { |
| 44 | + withMaven(jdk: 'temurin-jdk21-latest', maven: 'apache-maven-3.9.9', options: [artifactsPublisher(disabled: true)]) { |
45 | 45 | sh "mvn -f target-platform/pom.xml clean install -Pno-mirror -Pcheck-exists-plugin" |
46 | 46 | } |
47 | 47 | } |
|
51 | 51 | stage('Build core') { |
52 | 52 | timeout(time: 2, unit: 'HOURS') { |
53 | 53 | dir("kura") { |
54 | | - withMaven(jdk: 'temurin-jdk21-latest', maven: 'apache-maven-3.9.6', options: [artifactsPublisher(disabled: true)]) { |
| 54 | + withMaven(jdk: 'temurin-jdk21-latest', maven: 'apache-maven-3.9.9', options: [artifactsPublisher(disabled: true)]) { |
55 | 55 | sh "mvn -f kura/pom.xml -Dsurefire.rerunFailingTestsCount=3 clean install -Pcheck-exists-plugin" |
56 | 56 | } |
57 | 57 | } |
|
61 | 61 | stage('Build distrib') { |
62 | 62 | timeout(time: 1, unit: 'HOURS') { |
63 | 63 | dir("kura") { |
64 | | - withMaven(jdk: 'temurin-jdk21-latest', maven: 'apache-maven-3.9.6', options: [artifactsPublisher(disabled: true)]) { |
| 64 | + withMaven(jdk: 'temurin-jdk21-latest', maven: 'apache-maven-3.9.9', options: [artifactsPublisher(disabled: true)]) { |
65 | 65 | sh "mvn -f kura/distrib/pom.xml clean install" |
66 | 66 | } |
67 | 67 | } |
@@ -102,7 +102,7 @@ node { |
102 | 102 | stage('Sonar') { |
103 | 103 | timeout(time: 2, unit: 'HOURS') { |
104 | 104 | dir("kura") { |
105 | | - withMaven(jdk: 'temurin-jdk21-latest', maven: 'apache-maven-3.9.6', options: [artifactsPublisher(disabled: true)]) { |
| 105 | + withMaven(jdk: 'temurin-jdk21-latest', maven: 'apache-maven-3.9.9', options: [artifactsPublisher(disabled: true)]) { |
106 | 106 | withSonarQubeEnv(credentialsId: 'sonarcloud-token') { |
107 | 107 | // Check if on primary branch |
108 | 108 | def analysisParameters = "" |
|
0 commit comments