test_jenkins/Jenkinsfile
isa dcc030110c
Some checks failed
mypipeline/pipeline/head There was a failure building this commit
start jenkins
2023-04-21 16:45:12 -04:00

12 lines
242 B
Groovy

/* Requires the Docker Pipeline plugin */
pipeline {
agent { docker { image 'maven:3.9.0-eclipse-temurin-11' } }
stages {
stage('build') {
steps {
sh 'mvn --version'
}
}
}
}