diff --git a/Jenkinsfile b/Jenkinsfile index 5c63ccd72..284fbdb58 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,9 +1,15 @@ pipeline { agent any + + tools { + maven 'M3' + } stages { stage('Build') { steps { echo 'Bulding' + checkout scm + sh 'mvn checkstyle:checkstyle' } } }