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