From 5f6711ad21340d4c4811a4152b43acb4510d1445 Mon Sep 17 00:00:00 2001 From: Thomas Nield Date: Thu, 27 Dec 2018 10:24:10 -0600 Subject: [PATCH] try to add missing properties --- build.gradle | 6 ++++++ gradle.properties | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 7dd0892..051924e 100644 --- a/build.gradle +++ b/build.gradle @@ -89,10 +89,14 @@ publishing { groupId GROUP version VERSION_NAME + artifactId ARTIFACT_ID + + pom { name = POM_NAME description = POM_DESCRIPTION url = POM_URL + licenses { license { name = POM_LICENCE_NAME @@ -105,6 +109,8 @@ publishing { id = "thomasnield" name = "Thomas Nield" email = "thomasnield@live.com" + organization = "ReactiveX" + organizationUrl = "http://reactivex.io/" } } scm { diff --git a/gradle.properties b/gradle.properties index 7229a38..5cdc451 100644 --- a/gradle.properties +++ b/gradle.properties @@ -2,8 +2,9 @@ GROUP=io.reactivex.rxjava2 VERSION_NAME=2.11.0-RC32 POM_NAME=RxJavaFX POM_PACKAGING=jar -POM_DESCRIPTION=RxJavaFX +POM_DESCRIPTION=RxJava extensions for JavaFX +ARTIFACT_ID=rxjavafx POM_URL=https://github.com/ReactiveX/RxJavaFX POM_SCM_URL=https://github.com/ReactiveX/RxJavaFX POM_SCM_CONNECTION=scm:git:https://github.com/ReactiveX/RxJavaFX.git