Delete Jenkinsfile

This commit is contained in:
Stijn Bannink 2020-02-25 16:11:12 +01:00 committed by GitHub
parent 0b7a9db02d
commit f96f32a870
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

33
Jenkinsfile vendored
View file

@ -1,33 +0,0 @@
pipeline {
agent any
tools {
maven 'Maven 3.6.3'
jdk 'jdk8'
}
stages {
stage ('Initialize') {
steps {
sh '''
echo "PATH = ${PATH}"
echo "M2_HOME = ${M2_HOME}"
'''
}
}
stage ('Build') {
steps {
sh 'mvn -Dmaven.test.failure.ignore=true install'
}
post {
always {
echo 'Archiving coverage results...'
jacoco(execPattern: '**/**.exec', classPattern: '**/classes', sourcePattern: '**/src/main/java')
echo 'Archiving test results...'
junit allowEmptyResults: true, testResults: 'target/surefire-reports/*.xml'
echo 'Archiving artifacts...'
archiveArtifacts artifacts: 'target/*.jar', fingerprint: true
}
}
}
}
}