mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2026-02-03 12:51:11 +00:00
15 lines
221 B
Groovy
15 lines
221 B
Groovy
pipeline {
|
|
agent {
|
|
docker { image 'maven:3.8.5-openjdk-17' }
|
|
}
|
|
|
|
stages {
|
|
stage('Build') {
|
|
steps {
|
|
echo 'Bulding'
|
|
checkout scm
|
|
sh 'mvn checkstyle:checkstyle'
|
|
}
|
|
}
|
|
}
|
|
}
|