2025-02-26 10:36:50 +00:00
|
|
|
pipeline {
|
|
|
|
agent any
|
2025-02-26 10:45:58 +00:00
|
|
|
|
|
|
|
tools {
|
|
|
|
maven 'M3'
|
|
|
|
}
|
2025-02-26 10:36:50 +00:00
|
|
|
stages {
|
|
|
|
stage('Build') {
|
|
|
|
steps {
|
|
|
|
echo 'Bulding'
|
2025-02-26 10:45:58 +00:00
|
|
|
checkout scm
|
|
|
|
sh 'mvn checkstyle:checkstyle'
|
2025-02-26 10:36:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|