From 58278a664ee7f7c8be9cbb800aa26057b03e557e Mon Sep 17 00:00:00 2001 From: Jon Lee Date: Mon, 6 May 2019 10:40:36 -0700 Subject: [PATCH] Use the maven repo under the LinkedIn Bintray account to publish artifacts --- build.gradle | 2 +- gradle.properties | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 55106aab24f94..f104e90ba3b76 100644 --- a/build.gradle +++ b/build.gradle @@ -96,7 +96,7 @@ ext { bintrayUsername = System.getenv('BINTRAY_USER') bintrayKey=System.getenv('BINTRAY_KEY') - bintrayUrl = bintrayApiBaseUrl + '/maven/' + bintrayUsername + '/' + bintrayRepo + '/' + bintrayPackage + '/;publish=1' + bintrayUrl = bintrayApiBaseUrl + '/maven/linkedin/' + bintrayRepo + '/' + bintrayPackage + '/;publish=1' // By default, publish to Bintray. mavenUrl = project.hasProperty('mavenUrl') ? project.mavenUrl : bintrayUrl diff --git a/gradle.properties b/gradle.properties index 23f030ab6ffac..543c212d53e31 100644 --- a/gradle.properties +++ b/gradle.properties @@ -29,6 +29,6 @@ scalaVersion=2.11.12 task=build org.gradle.jvmargs=-Xmx1024m -Xss2m bintrayApiBaseUrl=https://api.bintray.com -bintrayRepo=kafka +bintrayRepo=maven bintrayPackage=kafka skipSigning=true