12 lines
242 B
Groovy
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'
|
|
}
|
|
}
|
|
}
|
|
}
|