Skip to content

Commit cb75f08

Browse files
Release Prep: Fix bintray version variable
Scoping issue made it refer to itself
1 parent 39a1cce commit cb75f08

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

swagger-confluence-cli/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ bintray {
3838
publications = ['myPublication']
3939
pkg {
4040
version {
41-
name = version
41+
name = project.version
4242
}
4343
repo = "$System.env.BINTRAY_REPO"
4444
name = 'swagger-confluence-cli'

swagger-confluence-core/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ bintray {
2020
publications = ['myPublication']
2121
pkg {
2222
version {
23-
name = version
23+
name = project.version
2424
}
2525
repo = "$System.env.BINTRAY_REPO"
2626
name = 'swagger-confluence-core'

swagger-confluence-gradle-plugin/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ bintray {
2323
publications = ['myPublication']
2424
pkg {
2525
version {
26-
name = version
26+
name = project.version
2727
}
2828
repo = "$System.env.BINTRAY_REPO"
2929
name = 'swagger-confluence-gradle-plugin'

0 commit comments

Comments
 (0)