config mvn

This commit is contained in:
Natalia Villegas 2018-12-16 16:59:33 -03:00
parent 56e9f9fb3c
commit 09f513c0ae

14
Jenkinsfile vendored
View file

@ -1,7 +1,19 @@
pipeline {
agent any
tools {
maven 'Maven 3.3.9'
jdk 'jdk8'
}
stages {
stage ('Initialize') {
steps {
sh '''
echo "PATH = ${PATH}"
echo "M2_HOME = ${M2_HOME}"
'''
}
}
stage('Build') {
steps {
echo 'Building..'