Update Jenkinsfile

This commit is contained in:
dawncoll 2024-06-24 17:51:48 +02:00 committed by GitHub
parent 944f0ccac7
commit 8967002e1b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

6
Jenkinsfile vendored
View file

@ -2,14 +2,14 @@
pipeline { pipeline {
agent none agent none
stages { stages {
stage('Maven Install') { stage('Maven compile') {
agent { agent {
docker { docker {
image 'maven:3.5.0' image 'maven:3.9.7'
} }
} }
steps { steps {
sh 'mvn clean install' sh 'mvn clean compile'
} }
} }
} }