Skip to content

Commit

Permalink
fix(cve): Update nebula config
Browse files Browse the repository at this point in the history
  • Loading branch information
ovidiupopa07 committed Mar 6, 2024
1 parent c84139c commit 6bff4a2
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions spinnaker-dependencies/spinnaker-dependencies.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,26 @@
apply plugin: "java-platform"

apply plugin: "nebula.maven-publish"
javaPlatform {
allowDependencies()
}
artifactoryPublish.skip = true
// 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')
}

ext {
versions = [
Expand Down

0 comments on commit 6bff4a2

Please sign in to comment.