See if it persists
Some checks failed
Homelab/java-spring-microservice/pipeline/head There was a failure building this commit

This commit is contained in:
Jim Nicholson 2021-12-23 17:20:56 -08:00
parent ec1481243c
commit 6eec750041

5
Jenkinsfile vendored
View File

@ -31,11 +31,9 @@ podTemplate(label: label, containers: [
stage('Build') {
sh '''
mvn clean package -B -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn
ls ~/.m2/fr/brouillard/oss/jgitver/0.14.0
'''
}
stage('Archive') {
archiveArtifacts artifacts: 'target/*.jar', followSymlinks: false
}
}
container('kaniko') {
stage('Image') {
@ -53,6 +51,7 @@ podTemplate(label: label, containers: [
}
stage('Archive') {
archiveArtifacts artifacts: 'target/*.tar', followSymlinks: false
archiveArtifacts artifacts: 'target/*.jar', followSymlinks: false
}
}
}