Added test Jenkinsfile with correct name

This commit is contained in:
Andreas Greiner 2021-08-06 21:45:03 +02:00
parent 02d443107b
commit c653935996

23
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,23 @@
pipeline {
agent any
tools {
maven 'Maven'
jdk 'Java JDK'
}
stages {
stage ('Initialize') {
steps {
sh '''
echo "PATH = ${PATH}"
echo "M2_HOME = ${M2_HOME}"
'''
}
}
stage ('Build') {
steps {
echo 'This is a minimal pipeline.'
}
}
}
}