2019-01-26 15:12:19 -05:00
|
|
|
pipeline {
|
|
|
|
agent any
|
|
|
|
stages {
|
2018-11-05 09:54:00 -05:00
|
|
|
|
2019-01-26 15:12:19 -05:00
|
|
|
stage ('Build') {
|
|
|
|
when {
|
|
|
|
branch 'master'
|
|
|
|
}
|
|
|
|
steps {
|
|
|
|
sh "rm -rf build/libs/"
|
|
|
|
sh "chmod +x gradlew"
|
|
|
|
sh "./gradlew build uploadArchives curseforge --refresh-dependencies --stacktrace"
|
2018-11-05 09:54:00 -05:00
|
|
|
|
2019-01-26 15:12:19 -05:00
|
|
|
archiveArtifacts artifacts: '**/build/libs/*.jar', fingerprint: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|