Skip to content

Commit 8f86946

Browse files
committed
try templating off RxAndroid
1 parent 9be230e commit 8f86946

2 files changed

Lines changed: 17 additions & 17 deletions

File tree

build.gradle

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -116,23 +116,23 @@ bintray {
116116
websiteUrl = 'https://github.com/ReactiveX/RxJavaFX/'
117117
issueTrackerUrl = 'https://github.com/ReactiveX/RxJavaFX/issues'
118118
vcsUrl = "https://github.com/ReactiveX/RxJavaFX.git"
119-
}
120-
121-
version {
122-
name = VERSION_NAME
123-
vcsTag = VERSION_NAME
124-
125-
126-
if (project.hasProperty('bintrayUser') && project.hasProperty('bintrayKey')) {
127-
user = project.bintrayUser
128-
key = project.bintrayKey
129-
}
130119

131-
if (project.hasProperty('sonatypeUsername') && project.hasProperty('sonatypePassword')) {
132-
sync.sync = true
133-
user = project.sonatypeUsername
134-
password = project.sonatypePassword
135-
close = '1' //Optional property. By default the staging repository is closed and artifacts are released to Maven Central. You can optionally turn this behaviour off (by puting 0 as value) and release the version manually.
120+
version {
121+
name = VERSION_NAME
122+
vcsTag = VERSION_NAME
123+
124+
mavenCentralSync {
125+
sync = true
126+
user = project.sonatypeUsername
127+
password = project.sonatypePassword
128+
}
136129
}
130+
137131
}
138132
}
133+
134+
if (project.hasProperty('bintrayUser') && project.hasProperty('bintrayKey')) {
135+
bintray.user = project.bintrayUser
136+
bintray.key = project.bintrayKey
137+
}
138+

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=io.reactivex.rxjava2
2-
VERSION_NAME=2.11.0-RC19
2+
VERSION_NAME=2.11.0-RC20
33
POM_NAME=RxJavaFX
44
POM_PACKAGING=jar
55
POM_DESCRIPTION=RxJavaFX

0 commit comments

Comments
 (0)