Punktonerzy/Jenkinsfile

29 lines
507 B
Plaintext
Raw Normal View History

2019-11-18 17:36:54 +01:00
pipeline {
agent any
2019-11-23 10:04:03 +01:00
tools {
maven 'Maven 3.3.9'
jdk 'jdk8'
}
2019-11-18 17:36:54 +01:00
stages {
stage('Build') {
steps {
2019-11-23 10:04:03 +01:00
sh '''
echo "PATH = ${PATH}"
echi "M2_HOME = ${M2_HOME}"
'''
2019-11-18 17:36:54 +01:00
echo 'Building..'
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}