Skip to content

Commit 142fd75

Browse files
committed
Fix artifact publishing
1 parent 45e527f commit 142fd75

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ test {
6262
}
6363

6464
task sourcesJar(type: Jar) {
65-
classifier = 'sources'
65+
archiveClassifier = 'sources'
6666
from sourceSets.main.allSource
6767
}
6868

@@ -81,7 +81,7 @@ javadoc {
8181

8282
task packageJavadoc(type: Jar) {
8383
from javadoc
84-
classifier = 'javadoc'
84+
archiveClassifier = 'javadoc'
8585
}
8686

8787
publishing {
@@ -130,7 +130,7 @@ publishing {
130130
}
131131
}
132132
bintray {
133-
configurations = ['archives']
133+
publications = ['mavenJava']
134134

135135
publish = true
136136
pkg {

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-RC33
2+
VERSION_NAME=2.11.0-RC34
33
POM_NAME=RxJavaFX
44
POM_PACKAGING=jar
55
POM_DESCRIPTION=RxJava extensions for JavaFX

0 commit comments

Comments
 (0)