diff --git a/gradle/buildscript.gradle b/gradle/buildscript.gradle index 94aff7a94..1e43fb732 100644 --- a/gradle/buildscript.gradle +++ b/gradle/buildscript.gradle @@ -15,6 +15,6 @@ dependencies { classpath 'gradle.plugin.nl.javadude.gradle.plugins:license-gradle-plugin:0.14.0' classpath 'com.linkedin.pegasus:gradle-plugins:29.2.3' // TODO Remove this dependency - classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4' +// classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4' classpath "org.jfrog.buildinfo:build-info-extractor-gradle:4.21.0" } diff --git a/gradle/maven.gradle b/gradle/maven.gradle index 8febd361d..6fcedb422 100644 --- a/gradle/maven.gradle +++ b/gradle/maven.gradle @@ -4,7 +4,7 @@ allprojects { subprojects { apply plugin: 'maven-publish' - apply plugin: 'com.jfrog.bintray' +// apply plugin: 'com.jfrog.bintray' apply plugin: 'com.jfrog.artifactory' apply plugin: 'pegasus' @@ -189,22 +189,22 @@ subprojects { } } - bintray { - user = System.getenv('BINTRAY_USER') - key = System.getenv('BINTRAY_KEY') - publications = allPublications - pkg { - repo = 'maven' - name = 'brooklin' - userOrg = 'linkedin' - licenses = ['BSD 2-Clause'] - vcsUrl = 'https://www.github.com/linkedin/brooklin' - publicDownloadNumbers = true - version { - name = project.version - } - publish = false - override = false - } - } +// bintray { +// user = System.getenv('BINTRAY_USER') +// key = System.getenv('BINTRAY_KEY') +// publications = allPublications +// pkg { +// repo = 'maven' +// name = 'brooklin' +// userOrg = 'linkedin' +// licenses = ['BSD 2-Clause'] +// vcsUrl = 'https://www.github.com/linkedin/brooklin' +// publicDownloadNumbers = true +// version { +// name = project.version +// } +// publish = false +// override = false +// } +// } }