File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff 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
1817plugins {
19- id " com.jfrog.bintray" version " 1.7.3 "
18+ id " com.jfrog.bintray" version " 1.8.4 "
2019}
2120
2221// custom configuration
2322apply from : ' gradle/version.gradle'
2423apply from : ' gradle/resolveDependencies.gradle'
24+ bintrayUpload. enabled = false
2525
2626ext. githubProjectName = rootProject. name // Change if github project name is not the same as the root project's name
2727
Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments