Update jenkinsfile
This commit is contained in:
parent
edc2f9a89e
commit
cf2592eb05
1 changed files with 3 additions and 2 deletions
5
Jenkinsfile
vendored
5
Jenkinsfile
vendored
|
@ -23,7 +23,7 @@ pipeline {
|
||||||
sh '''
|
sh '''
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
chmod +x gradlew
|
chmod +x gradlew
|
||||||
./gradlew clean jarjar
|
./gradlew clean jar
|
||||||
'''
|
'''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -32,7 +32,8 @@ pipeline {
|
||||||
|
|
||||||
post {
|
post {
|
||||||
always {
|
always {
|
||||||
archiveArtifacts artifacts: 'build/libs/*AIO*', fingerprint: true
|
archiveArtifacts artifacts: 'build/libs/*-*.jar', fingerprint: true
|
||||||
|
deleteDir()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue