Removed Jenkinsfile

This commit is contained in:
Andreas Greiner 2021-08-06 21:44:29 +02:00
parent c475628375
commit 02d443107b

View File

@ -1,23 +0,0 @@
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.'
}
}
}
}