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 { pipeline {
agent any agent any
tools {
maven 'M3'
}
stages { stages {
stage('Build') { stage('Build') {
steps { steps {
echo 'Bulding' echo 'Bulding'
checkout scm
sh 'mvn checkstyle:checkstyle'
} }
} }
} }