From 1187fea65cb044456aa5c0e957de14b3474ae148 Mon Sep 17 00:00:00 2001 From: Brian Clozel Date: Wed, 4 Sep 2019 10:26:22 +0200 Subject: [PATCH] Fix Artifactory Gradle plugin configuration This commit adds a missing dependency from the artifactoryPublish task to the "install" task as POMs are currently missing from the published artifacts and they are generated with the "install" task here. --- gradle/publish-maven.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/gradle/publish-maven.gradle b/gradle/publish-maven.gradle index 9cf07233233..897ef12b668 100644 --- a/gradle/publish-maven.gradle +++ b/gradle/publish-maven.gradle @@ -61,6 +61,7 @@ def customizePom(pom, gradleProject) { } artifactoryPublish { + dependsOn install publishConfigs('archives', 'published') publishArtifacts = true publishPom = true