summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Grover <joeygrover@gmail.com>2019-11-21 14:18:04 -0500
committerGitHub <noreply@github.com>2019-11-21 14:18:04 -0500
commite4ef8d455dba485619ea446bf445f113263241ff (patch)
treebb8864c4fe4cfaa701582ea8a939b5929b4d31b6
parentde42dd4a92f35562be7159b667eee84fdf896806 (diff)
parenta828bd0aeefe9c982960965cadd10056257f4a23 (diff)
downloadsdl_android-e4ef8d455dba485619ea446bf445f113263241ff.tar.gz
Merge pull request #1232 from smartdevicelink/bugfix/bintray_groupId
Update Bintray groupId to com.smartdevicelink
-rw-r--r--javaEE/bintray.gradle5
-rw-r--r--javaEE/bintray.properties4
-rw-r--r--javaSE/bintray.gradle5
-rw-r--r--javaSE/bintray.properties4
4 files changed, 10 insertions, 8 deletions
diff --git a/javaEE/bintray.gradle b/javaEE/bintray.gradle
index f38754b20..4756d4d70 100644
--- a/javaEE/bintray.gradle
+++ b/javaEE/bintray.gradle
@@ -4,7 +4,6 @@ apply plugin: 'maven'
def siteUrl = 'https://github.com/smartdevicelink/sdl_java_suite' // Homepage URL of the library
def gitUrl = 'https://github.com/smartdevicelink/sdl_java_suite.git' // Git repository URL
-group = "com.smartdevicelink" // Maven Group ID for the artifact
def libDescription = 'SmartDeviceLink mobile library'
def libVersion = new File(projectDir.path, ('/../VERSION')).text.trim()
@@ -37,7 +36,7 @@ bintray {
pkg {
repo = props.getProperty("bintray.repo")
- name = props.getProperty("bintray.artifact")
+ name = props.getProperty("bintray.package")
websiteUrl = siteUrl
vcsUrl = gitUrl
userOrg = props.getProperty("bintray.userorg")
@@ -82,7 +81,7 @@ publishing {
artifact javadocJar {
classifier "javadoc"
}
- groupId props.getProperty("bintray.userorg")
+ groupId props.getProperty("bintray.group")
artifactId props.getProperty("bintray.artifact")
version libVersion
pom.withXml {
diff --git a/javaEE/bintray.properties b/javaEE/bintray.properties
index b1d2ca117..aa1926ba5 100644
--- a/javaEE/bintray.properties
+++ b/javaEE/bintray.properties
@@ -1,6 +1,8 @@
bintray.user=username
bintray.key=apikey
+bintray.userorg=smartdevicelink
bintray.repo=sdl_java_ee
+bintray.package=sdl_javaee
+bintray.group=com.smartdevicelink
bintray.artifact=sdl_java_ee
-bintray.userorg=smartdevicelink
bintray.publish=true \ No newline at end of file
diff --git a/javaSE/bintray.gradle b/javaSE/bintray.gradle
index 019d6dfe2..49ab4761a 100644
--- a/javaSE/bintray.gradle
+++ b/javaSE/bintray.gradle
@@ -4,7 +4,6 @@ apply plugin: 'maven'
def siteUrl = 'https://github.com/smartdevicelink/sdl_java_suite' // Homepage URL of the library
def gitUrl = 'https://github.com/smartdevicelink/sdl_java_suite.git' // Git repository URL
-group = "com.smartdevicelink" // Maven Group ID for the artifact
def libDescription = 'SmartDeviceLink mobile library'
def libVersion = new File(projectDir.path, ('/../VERSION')).text.trim()
@@ -37,7 +36,7 @@ bintray {
pkg {
repo = props.getProperty("bintray.repo")
- name = props.getProperty("bintray.artifact")
+ name = props.getProperty("bintray.package")
websiteUrl = siteUrl
vcsUrl = gitUrl
userOrg = props.getProperty("bintray.userorg")
@@ -82,7 +81,7 @@ publishing {
artifact javadocJar {
classifier "javadoc"
}
- groupId props.getProperty("bintray.userorg")
+ groupId props.getProperty("bintray.group")
artifactId props.getProperty("bintray.artifact")
version libVersion
pom.withXml {
diff --git a/javaSE/bintray.properties b/javaSE/bintray.properties
index af97cacdc..b491c7774 100644
--- a/javaSE/bintray.properties
+++ b/javaSE/bintray.properties
@@ -1,6 +1,8 @@
bintray.user=username
bintray.key=apikey
+bintray.userorg=smartdevicelink
bintray.repo=sdl_java_se
+bintray.package=sdl_javase
+bintray.group=com.smartdevicelink
bintray.artifact=sdl_java_se
-bintray.userorg=smartdevicelink
bintray.publish=true \ No newline at end of file