File tree Expand file tree Collapse file tree 3 files changed +26
-28
lines changed
Expand file tree Collapse file tree 3 files changed +26
-28
lines changed Original file line number Diff line number Diff line change @@ -120,41 +120,39 @@ publishing {
120120 }
121121 }
122122}
123-
124123bintray {
125124 configurations = [' archives' ]
126125
127126 publish = true
128127
129128 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
129+ name = POM_NAME
130+ description = POM_DESCRIPTION
131+ url = POM_URL
132+ licenses {
133+ license {
134+ name = POM_LICENCE_NAME
135+ url = POM_SCM_URL
136+ distribution = POM_LICENCE_DIST
141137 }
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- }
138+ }
139+ developers {
140+ developer {
141+ id = " thomasnield"
142+ name = " Thomas Nield"
143+ email = " thomasnield@live.com"
155144 }
156145 }
157- }. writeTo(" pom.xml" )
146+ scm {
147+ connection = POM_SCM_CONNECTION
148+ developerConnection = POM_SCM_DEV_CONNECTION
149+ url = " scm:git:git@github.com:ReactiveX/RxJavaFX.git"
150+ }
151+ issueManagement {
152+ system = " github"
153+ url = " https://github.com/ReactiveX/RxJavaFX/issues"
154+ }
155+ }
158156
159157 pkg {
160158 repo = ' RxJava'
Original file line number Diff line number Diff line change 11GROUP =io.reactivex.rxjava2
2- VERSION_NAME =2.11.0-RC28
2+ VERSION_NAME =2.11.0-RC29
33POM_NAME =RxJavaFX
44POM_PACKAGING =jar
55POM_DESCRIPTION =RxJavaFX
Original file line number Diff line number Diff line change 33
44if [ " $TRAVIS_PULL_REQUEST " != " false" ]; then
55 echo -e " Build Pull Request #$TRAVIS_PULL_REQUEST => Branch [$TRAVIS_BRANCH ]"
6- ./gradlew build
6+ ./gradlew -x test build
77elif [ " $TRAVIS_PULL_REQUEST " == " false" ] && [ " $TRAVIS_TAG " != " " ]; then
88 echo -e ' Build Branch for Release => Branch [' $TRAVIS_BRANCH ' ] Tag [' $TRAVIS_TAG ' ]'
99 ./gradlew -x test -PbintrayUser=" ${bintrayUser} " -PbintrayKey=" ${bintrayKey} " -PsonatypeUsername=" ${sonatypeUsername} " -PsonatypePassword=" ${sonatypePassword} " build bintrayUpload -PreleaseMode=full --stacktrace --info
You can’t perform that action at this time.
0 commit comments