Publish unoptimized .jar files in the Jenkinsfile.
This commit is contained in:
parent
7c0fe6119a
commit
a72cbeaaf0
|
@ -18,6 +18,9 @@ pipeline {
|
|||
stage('Deploy') {
|
||||
steps {
|
||||
echo 'Deploying....'
|
||||
dir('remappedJars') {
|
||||
zip zipFile: './UnoptimizedJars.zip', archive: true, glob: '*.jar'
|
||||
}
|
||||
dir('shrinkedJars') {
|
||||
archiveArtifacts artifacts:'*.jar', fingerprint: false
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue