From 147e07b23587ac12d8085b9f3117428e24a581d2 Mon Sep 17 00:00:00 2001 From: Brian Clozel Date: Wed, 16 Oct 2019 21:25:29 +0200 Subject: [PATCH] Publish BOM using Artifactory Gradle plugin (#678) This commit applies the Artifactory Gradle plugin and configures it to publish the generated BOM. See other commits in #678, see #677. --- build.gradle | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build.gradle b/build.gradle index d889b76b78..c85781f1d2 100644 --- a/build.gradle +++ b/build.gradle @@ -17,6 +17,7 @@ plugins { id "java-platform" id "maven-publish" + id "com.jfrog.artifactory" version '4.9.8' } group = 'io.projectreactor' @@ -131,3 +132,7 @@ publishing { } } } +artifactoryPublish { + publications(publishing.publications.mavenJava) +} +