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.
This commit is contained in:
Brian Clozel
2019-09-04 10:26:22 +02:00
parent e26cdfe21e
commit 1187fea65c

View File

@@ -61,6 +61,7 @@ def customizePom(pom, gradleProject) {
}
artifactoryPublish {
dependsOn install
publishConfigs('archives', 'published')
publishArtifacts = true
publishPom = true