mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2026-02-05 13:51:12 +00:00
16 lines
202 B
Groovy
16 lines
202 B
Groovy
pipeline {
|
|
agent any
|
|
|
|
tools {
|
|
maven 'M3'
|
|
}
|
|
stages {
|
|
stage('Build') {
|
|
steps {
|
|
echo 'Bulding'
|
|
checkout scm
|
|
sh 'mvn checkstyle:checkstyle'
|
|
}
|
|
}
|
|
}
|
|
}
|