diff --git a/Jenkinsfile b/Jenkinsfile index bcfd4b9..647a9df 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1 +1,10 @@ -checkout scm +node { + + stage 'Checkout' + checkout scm + + stage 'Build' + def mvnHome = tool 'Maven 3.3.9' + sh "${mvnHome}/bin/mvn clean install" + +}