File tree Expand file tree Collapse file tree 2 files changed +5
-7
lines changed
Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 11ext {
2- packageName = project . hasProperty( ' PACKAGE_NAME' ) ? PACKAGE_NAME : null
3- libraryName = project . hasProperty( ' NAME' ) ? NAME : null
4- artifact = project . hasProperty( ' ARTIFACT_ID' ) ? ARTIFACT_ID : null
5- libraryDescription = project . hasProperty( ' DESCRIPTION' ) ? DESCRIPTION : null
2+ packageName = PACKAGE_NAME
3+ libraryName = NAME
4+ artifact = ARTIFACT_ID
5+ libraryDescription = DESCRIPTION
66}
77
88apply from : rootProject. file(' .utility/bintray-release.gradle' )
Original file line number Diff line number Diff line change @@ -5,8 +5,6 @@ apply plugin: 'java-library'
55apply plugin : ' maven'
66apply plugin : ' maven-publish'
77
8- bintrayUpload. onlyIf { packageName && artifact && libraryName && libraryDescription }
9-
108bintrayUpload. dependsOn assemble
119bintrayUpload. dependsOn sourcesJar
1210bintrayUpload. dependsOn javadocJar
@@ -15,7 +13,7 @@ bintray {
1513 user = System . getenv(' BINTRAY_USER' )
1614 key = System . getenv(' BINTRAY_APIKEY' )
1715 publications = [' maven' ]
18- dryRun = true
16+ dryRun = false
1917 pkg {
2018 repo = ' ibm-cloud-sdk-repo'
2119 name = packageName
You can’t perform that action at this time.
0 commit comments