Apply Artifactory Gradle plugin to build

Since gh-23282, our CI does not apply automatically the Artifactory
Gradle plugin during our build and we're now applying it "manually".
This commit backports this change since the build configuration is
shared between branches.

See gh-23282
This commit is contained in:
Brian Clozel 2019-08-27 22:26:25 +02:00
parent dd22b8fd39
commit 4a4edeb97f
2 changed files with 6 additions and 0 deletions

View File

@ -14,6 +14,7 @@ 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 {

View File

@ -1,4 +1,5 @@
apply plugin: "propdeps-maven"
apply plugin: 'com.jfrog.artifactory'
install {
repositories.mavenInstaller {
@ -58,3 +59,7 @@ def customizePom(pom, gradleProject) {
}
}
}
artifactoryPublish {
publishConfigs('archives')
}