We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45e527f commit 142fd75Copy full SHA for 142fd75
build.gradle
@@ -62,7 +62,7 @@ test {
62
}
63
64
task sourcesJar(type: Jar) {
65
- classifier = 'sources'
+ archiveClassifier = 'sources'
66
from sourceSets.main.allSource
67
68
@@ -81,7 +81,7 @@ javadoc {
81
82
task packageJavadoc(type: Jar) {
83
from javadoc
84
- classifier = 'javadoc'
+ archiveClassifier = 'javadoc'
85
86
87
publishing {
@@ -130,7 +130,7 @@ publishing {
130
131
132
bintray {
133
- configurations = ['archives']
+ publications = ['mavenJava']
134
135
publish = true
136
pkg {
gradle.properties
@@ -1,5 +1,5 @@
1
GROUP=io.reactivex.rxjava2
2
-VERSION_NAME=2.11.0-RC33
+VERSION_NAME=2.11.0-RC34
3
POM_NAME=RxJavaFX
4
POM_PACKAGING=jar
5
POM_DESCRIPTION=RxJava extensions for JavaFX
0 commit comments