From 3a132f8c3c2f3b5830c0ae03fd3b751c10f6ae40 Mon Sep 17 00:00:00 2001 From: Brian Clozel Date: Wed, 4 Sep 2019 11:21:41 +0200 Subject: [PATCH] Revert Artifactory Gradle plugin configuration This commit reverts all artifactory configuration changes in this branch. A new build plan has been created for the master branch which is tailored for the latest Gradle changes made on that branch. --- build.gradle | 1 - gradle/publish-maven.gradle | 8 -------- 2 files changed, 9 deletions(-) diff --git a/build.gradle b/build.gradle index e2c916b40f..0b9bdc234f 100644 --- a/build.gradle +++ b/build.gradle @@ -14,7 +14,6 @@ plugins { id "org.jetbrains.kotlin.jvm" version "1.2.71" apply false id "org.jetbrains.dokka" version "0.9.18" id "org.asciidoctor.convert" version "1.5.8" - id "com.jfrog.artifactory" version '4.9.8' apply false } ext { diff --git a/gradle/publish-maven.gradle b/gradle/publish-maven.gradle index 897ef12b66..dad95c8452 100644 --- a/gradle/publish-maven.gradle +++ b/gradle/publish-maven.gradle @@ -1,5 +1,4 @@ apply plugin: "propdeps-maven" -apply plugin: 'com.jfrog.artifactory' install { repositories.mavenInstaller { @@ -59,10 +58,3 @@ def customizePom(pom, gradleProject) { } } } - -artifactoryPublish { - dependsOn install - publishConfigs('archives', 'published') - publishArtifacts = true - publishPom = true -}