Files
jenkins-multibranch-project/Jenkinsfile
Guillem Hernandez Sola 43f78b4043 Jenkins No Deploy
2020-10-20 09:55:55 +02:00

21 lines
404 B
Groovy

pipeline {
agent any
tools {
// Install the Maven version configured as "M3" and add it to the path.
maven "maven_jenkins"
}
stages {
stage ('Compile Stage') {
steps {
sh 'mvn clean compile'
}
}
stage ('Testing Stage') {
steps {
sh 'mvn test'
}
}
}
}