Skip to content

Commit

Permalink
Gradle: Force SnakeYaml to stick to version 1.31
Browse files Browse the repository at this point in the history
For background information see [1].

[1]: #5818

Signed-off-by: Sebastian Schuberth <[email protected]>
  • Loading branch information
sschuberth committed Sep 21, 2022
1 parent 8451778 commit d3e989e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,10 @@ subprojects {
// Ensure that all transitive versions of Kotlin libraries match our version of Kotlin.
force("org.jetbrains.kotlin:kotlin-reflect:${rootProject.libs.versions.kotlinPlugin.get()}")
force("org.jetbrains.kotlin:kotlin-script-runtime:${rootProject.libs.versions.kotlinPlugin.get()}")

// Starting with version 1.32 the YAML file size is limited to 3 MiB, which is not configurable yet via
// Hoplite or Jackson.
force("org.yaml:snakeyaml:1.31")
}
}
}
Expand Down

0 comments on commit d3e989e

Please sign in to comment.