change jenkinsfile

This commit is contained in:
TomPGrid 2025-02-26 11:45:58 +01:00
parent 9324e6ef3d
commit 6bf48d17d6

6
Jenkinsfile vendored
View file

@ -1,9 +1,15 @@
pipeline {
agent any
tools {
maven 'M3'
}
stages {
stage('Build') {
steps {
echo 'Bulding'
checkout scm
sh 'mvn checkstyle:checkstyle'
}
}
}