diff --git a/micrometer-bom/build.gradle b/micrometer-bom/build.gradle index 702494047b..87ebce3d78 100644 --- a/micrometer-bom/build.gradle +++ b/micrometer-bom/build.gradle @@ -1,5 +1,4 @@ plugins { - id 'maven-publish' id 'io.spring.dependency-management' version '1.0.8.RELEASE' } @@ -18,26 +17,3 @@ dependencyManagement { } } } - -bintray.publication = 'mavenBom' -artifactory { - publish { - defaults { - publications 'mavenBom' - } - } -} - -publishing { - publications { - mavenBom(MavenPublication) { - } - } -} - -tasks.withType(PublishToMavenLocal) { - onlyIf { - // avoid publishing `nebula` publication added by plugins - publication == publishing.publications.mavenBom - } -}