diff --git a/kork-bom/kork-bom.gradle b/kork-bom/kork-bom.gradle index 988fe1d4f..d7e6d144d 100644 --- a/kork-bom/kork-bom.gradle +++ b/kork-bom/kork-bom.gradle @@ -1,9 +1,28 @@ apply plugin: "java-platform" +apply plugin: "nebula.maven-publish" javaPlatform { allowDependencies() } +// without this building the pom fails when using the Nebula publishing plugin +configurations { + implementation +} artifactoryPublish.skip = false +// This is a BOM - aka there is actually no CODE - it's PURE BOM +publishing { + publications { + nebula(MavenPublication) { + from components.javaPlatform + } + } +} + +artifactoryPublish { + skip = false //Skip build info analysis and publishing (false by default) + publications ('nebula') +} + dependencies { api(platform(project(":spinnaker-dependencies"))) constraints {