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:
5
Jenkinsfile
vendored
5
Jenkinsfile
vendored
@@ -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"
|
||||
}
|
||||
}
|
||||
|
25
build.gradle
25
build.gradle
@@ -11,10 +11,6 @@ buildscript {
|
||||
}
|
||||
}
|
||||
|
||||
plugins {
|
||||
id "com.jfrog.bintray" version "1.7"
|
||||
}
|
||||
|
||||
apply plugin: 'java'
|
||||
apply plugin: 'maven'
|
||||
apply plugin: 'maven-publish'
|
||||
@@ -122,10 +118,10 @@ artifacts {
|
||||
|
||||
publishing {
|
||||
publications {
|
||||
MyPublication(MavenPublication) {
|
||||
mavenJava(MavenPublication) {
|
||||
groupId = project.group
|
||||
artifactId = project.archivesBaseName
|
||||
version = project.version + '-' + System.getenv('TRAVIS_BUILD_NUMBER')
|
||||
version = project.version + '-' + System.getenv('BUILD_NUMBER')
|
||||
artifact deobfJar
|
||||
artifact sourceJar
|
||||
artifact apiJar
|
||||
@@ -134,17 +130,10 @@ publishing {
|
||||
}
|
||||
}
|
||||
|
||||
bintray {
|
||||
user = System.getenv('BINTRAY_USER')
|
||||
key = System.getenv('BINTRAY_KEY')
|
||||
publications = ['MyPublication']
|
||||
publish = true
|
||||
pkg {
|
||||
repo = 'dev'
|
||||
name = 'refinedstorage'
|
||||
version {
|
||||
name = project.version + '-' + System.getenv('TRAVIS_BUILD_NUMBER')
|
||||
released = new Date()
|
||||
publishing {
|
||||
repositories {
|
||||
maven {
|
||||
url "/var/www/repo"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user