Skip to content

Commit 32a6bb9

Browse files
Updated maven to 3.9.9
1 parent edc6a27 commit 32a6bb9

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Jenkinsfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ node {
4141
stage('Build target-platform') {
4242
timeout(time: 1, unit: 'HOURS') {
4343
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)]) {
4545
sh "mvn -f target-platform/pom.xml clean install -Pno-mirror -Pcheck-exists-plugin"
4646
}
4747
}
@@ -51,7 +51,7 @@ node {
5151
stage('Build core') {
5252
timeout(time: 2, unit: 'HOURS') {
5353
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)]) {
5555
sh "mvn -f kura/pom.xml -Dsurefire.rerunFailingTestsCount=3 clean install -Pcheck-exists-plugin"
5656
}
5757
}
@@ -61,7 +61,7 @@ node {
6161
stage('Build distrib') {
6262
timeout(time: 1, unit: 'HOURS') {
6363
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)]) {
6565
sh "mvn -f kura/distrib/pom.xml clean install"
6666
}
6767
}
@@ -102,7 +102,7 @@ node {
102102
stage('Sonar') {
103103
timeout(time: 2, unit: 'HOURS') {
104104
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)]) {
106106
withSonarQubeEnv(credentialsId: 'sonarcloud-token') {
107107
// Check if on primary branch
108108
def analysisParameters = ""

0 commit comments

Comments
 (0)