File tree Expand file tree Collapse file tree 2 files changed +35
-5
lines changed
Expand file tree Collapse file tree 2 files changed +35
-5
lines changed Original file line number Diff line number Diff line change @@ -80,9 +80,6 @@ task packageJavadoc(type: Jar) {
8080 classifier = ' javadoc'
8181}
8282
83-
84-
85-
8683publishing {
8784 publications {
8885 mavenJava(MavenPublication ) {
@@ -124,12 +121,41 @@ publishing {
124121 }
125122}
126123
127-
128124bintray {
129125 configurations = [' archives' ]
130126
131127 publish = true
132128
129+ pom {
130+ project {
131+ name project. POM_DESCRIPTION
132+ packaging project. POM_PACKAGING
133+ description project. POM_DESCRIPTION
134+ url project. POM_URL
135+ version project. VERSION_NAME
136+
137+ scm {
138+ url project. POM_SCM_CONNECTION
139+ connection project. POM_SCM_CONNECTION
140+ developerConnection project. POM_SCM_CONNECTION
141+ }
142+
143+ licenses {
144+ license {
145+ name project. POM_LICENCE_NAME
146+ }
147+ }
148+
149+ developers {
150+ developer {
151+ id project. POM_DEVELOPER_ID
152+ name project. POM_DEVELOPER_NAME
153+ email project. POM_EMAIL
154+ }
155+ }
156+ }
157+ }. writeTo(" pom.xml" )
158+
133159 pkg {
134160 repo = ' RxJava'
135161 name = ' RxJavaFX'
@@ -150,6 +176,10 @@ bintray {
150176 sync = true
151177 user = rootProject. sonatypeUsername
152178 password = rootProject. sonatypePassword
179+
180+ name = POM_NAME
181+ description = POM_DESCRIPTION
182+
153183 close = " 1"
154184 }
155185 }
Original file line number Diff line number Diff line change 11GROUP =io.reactivex.rxjava2
2- VERSION_NAME =2.11.0-RC27
2+ VERSION_NAME =2.11.0-RC28
33POM_NAME =RxJavaFX
44POM_PACKAGING =jar
55POM_DESCRIPTION =RxJavaFX
You can’t perform that action at this time.
0 commit comments