New Jenkinsfile

This commit is contained in:
Guillem Hernandez Sola
2020-10-20 10:22:38 +02:00
parent 1a03034ae5
commit dc40fbfe04

3
Jenkinsfile vendored
View File

@@ -2,7 +2,6 @@ pipeline {
agent any
tools {
// Install the Maven version configured as "M3" and add it to the path.
maven "maven_jenkins"
}
@@ -17,10 +16,12 @@ pipeline {
sh 'mvn test'
}
}
stage ('Installing Stage') {
steps {
sh 'mvn install'
}
}
}
}