Skip to content

Commit

Permalink
chore(dependencies): make snakeyaml version strictly to 1.27
Browse files Browse the repository at this point in the history
  • Loading branch information
kirangodishala committed Nov 14, 2023
1 parent 7bd9a47 commit cea39f4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 2 additions & 0 deletions kork-runtime/kork-runtime.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
dependencies {
runtimeOnly(platform(project(":spinnaker-dependencies")))

// Add each included runtime project as a runtime dependency
gradle.includedRuntimeProjects.each {
runtimeOnly project(it)
Expand Down
7 changes: 6 additions & 1 deletion spinnaker-dependencies/spinnaker-dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,12 @@ dependencies {
// when we upgrade to spring boot 2.6.x. It's safe to upgrade beyond 1.29
// with spring boot >= 2.6.12. See
// https://github.com/spring-projects/spring-boot/issues/32228#issue-136185850.0.
api("org.yaml:snakeyaml:1.27")
// making it strict as some of the modules have it resolved to higher versions(ex (ex: kork-secrets to 1.30)
api("org.yaml:snakeyaml"){
version {
strictly "1.27"
}
}
api("org.springdoc:springdoc-openapi-webmvc-core:${versions.openapi}")
api("org.springdoc:springdoc-openapi-kotlin:${versions.openapi}")
api("org.springframework.boot:spring-boot-configuration-processor:${versions.springBoot}")
Expand Down

0 comments on commit cea39f4

Please sign in to comment.