diff --git a/build.gradle b/build.gradle index 70e3316d8..4505ba83f 100644 --- a/build.gradle +++ b/build.gradle @@ -3,7 +3,6 @@ import static org.gradle.api.JavaVersion.VERSION_1_8 plugins { id 'org.jetbrains.kotlin.jvm' apply false - id 'com.jfrog.bintray' apply false id 'com.jfrog.artifactory' id 'com.gradle.build-scan' } @@ -89,7 +88,6 @@ def publishProjects = childProjects.values() configure(publishProjects) { Project subproject -> apply plugin: 'maven-publish' - apply plugin: 'com.jfrog.bintray' apply plugin: 'com.jfrog.artifactory' evaluationDependsOn(subproject.path) @@ -224,26 +222,6 @@ configure(publishProjects) { Project subproject -> } } } - - bintray { - user = System.getenv('CORDA_BINTRAY_USER') ?: System.getProperty('corda.bintray.user') - key = System.getenv('CORDA_BINTRAY_KEY') ?: System.getProperty('corda.bintray.key') - publications = [subproject.name] - dryRun = (System.getenv('CORDA_BINTRAY_DRYRUN') != null || System.getProperty('corda.bintray.dryrun') != null) - pkg { - repo = 'corda' - name = subproject.name - userOrg = 'r3' - licenses = ['Apache-2.0'] - - version { - gpg { - sign = true - passphrase = System.getenv('CORDA_BINTRAY_GPG_PASSPHRASE') - } - } - } - } } artifactory { diff --git a/gradle.properties b/gradle.properties index e8a47972c..8ee8156f1 100644 --- a/gradle.properties +++ b/gradle.properties @@ -28,7 +28,6 @@ httpclient_version=4.5.14 jnr_posix_version=3.1.16 log4j_version=2.20.0 -bintray_version=1.8.5 artifactory_version=4.31.0 gradle_publish_version=0.21.0 diff --git a/settings.gradle b/settings.gradle index c2f15d794..2f26b12bd 100644 --- a/settings.gradle +++ b/settings.gradle @@ -8,7 +8,6 @@ pluginManagement { id 'org.jetbrains.dokka' version dokka_version id 'com.gradle.plugin-publish' version gradle_publish_version id 'com.jfrog.artifactory' version artifactory_version - id 'com.jfrog.bintray' version bintray_version id 'org.owasp.dependencycheck' version '5.3.2.1' id 'com.gradle.build-scan' version '3.3.4' }