Skip to content

Commit a9eff26

Browse files
committed
upgrade bintray plugin
1 parent 18f933d commit a9eff26

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ buildscript {
77
maven { url "http://repo.spring.io/plugins-release" }
88
}
99
dependencies {
10-
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3"
1110
classpath "com.diffplug.spotless:spotless-plugin-gradle:3.13.0"
1211
classpath "de.thetaphi:forbiddenapis:2.2"
1312
classpath "de.aaschmid:gradle-cpd-plugin:1.0"
@@ -16,12 +15,13 @@ buildscript {
1615
}
1716

1817
plugins {
19-
id "com.jfrog.bintray" version "1.7.3"
18+
id "com.jfrog.bintray" version "1.8.4"
2019
}
2120

2221
// custom configuration
2322
apply from: 'gradle/version.gradle'
2423
apply from: 'gradle/resolveDependencies.gradle'
24+
bintrayUpload.enabled = false
2525

2626
ext.githubProjectName = rootProject.name // Change if github project name is not the same as the root project's name
2727

gradle/bintray.gradle

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,18 @@ if (System.env.BINTRAY_USER && System.env.BINTRAY_KEY) {
88
dryRun = System.env.CIRCLE_BRANCH != "master"
99
publish = true
1010
pkg {
11-
repo = "maven"
11+
repo = "spar-wings"
1212
name = project.name
1313
desc = project.description
1414
websiteUrl = "https://github.com/dai0304/spar-wings"
1515
issueTrackerUrl = "https://github.com/dai0304/spar-wings/issues"
1616
vcsUrl = "https://github.com/dai0304/spar-wings.git"
1717
licenses = ["Apache-2.0"]
1818
labels = ["AWS", "Spring framework"]
19+
version {
20+
name = project.version
21+
vcsTag = project.version
22+
}
1923
}
2024
}
2125
}

0 commit comments

Comments
 (0)