removed bintray and replaced it with a local mvn repos (#1785)

* removed bintray and replaced it with a local mvn repos

* checkout scm

* publish stage in Jenkinsfile
This commit is contained in:
Frank Spijkerman
2018-05-13 12:08:51 +02:00
committed by Raoul
parent f5b6357b1c
commit 4e73891f99
2 changed files with 11 additions and 19 deletions

5
Jenkinsfile vendored
View File

@@ -1,6 +1,6 @@
node {
stage('Preparation') {
git url: 'https://github.com/raoulvdberge/refinedstorage.git', branch: 'mc1.12'
checkout scm
}
cache(maxCacheSize: 250, caches: [
[$class: 'ArbitraryFileCache', excludes: 'modules-2/modules-2.lock,*/plugin-resolution/**', includes: '**/*', path: '${HOME}/.gradle/caches'],
@@ -14,4 +14,7 @@ node {
stage('Archive artifacts') {
archiveArtifacts 'build/libs/*.jar'
}
stage('Publish artifacts') {
sh "./gradlew publish"
}
}