Skip to content

Commit 4a4edeb

Browse files
committed
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
1 parent dd22b8f commit 4a4edeb

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ plugins {
1414
id "org.jetbrains.kotlin.jvm" version "1.2.71" apply false
1515
id "org.jetbrains.dokka" version "0.9.18"
1616
id "org.asciidoctor.convert" version "1.5.8"
17+
id "com.jfrog.artifactory" version '4.9.8' apply false
1718
}
1819

1920
ext {

gradle/publish-maven.gradle

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
apply plugin: "propdeps-maven"
2+
apply plugin: 'com.jfrog.artifactory'
23

34
install {
45
repositories.mavenInstaller {
@@ -58,3 +59,7 @@ def customizePom(pom, gradleProject) {
5859
}
5960
}
6061
}
62+
63+
artifactoryPublish {
64+
publishConfigs('archives')
65+
}

0 commit comments

Comments
 (0)