Fixed archiving artifacts

This commit is contained in:
Joseph Robinson
2020-05-15 13:24:42 -07:00
parent 86928e546a
commit 50386a0373

2
Jenkinsfile vendored
View File

@@ -17,7 +17,7 @@ git submodule update --init --recursive'''
stage('Archive') {
steps {
archiveArtifacts(artifacts: '*.jar', fingerprint: true)
archiveArtifacts(artifacts: 'target/*.jar', fingerprint: true)
}
}