Skip to content

Commit 47120ec

Browse files
committed
Gradle: Force SnakeYaml to stick to version 1.31
For background information see [1]. [1]: #5818 Signed-off-by: Sebastian Schuberth <[email protected]>
1 parent 8451778 commit 47120ec

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

build.gradle.kts

+4
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,10 @@ subprojects {
236236
// Ensure that all transitive versions of Kotlin libraries match our version of Kotlin.
237237
force("org.jetbrains.kotlin:kotlin-reflect:${rootProject.libs.versions.kotlinPlugin.get()}")
238238
force("org.jetbrains.kotlin:kotlin-script-runtime:${rootProject.libs.versions.kotlinPlugin.get()}")
239+
240+
// Starting with version 1.32 the YAML file size is limited to 3 MiB, which is not configurable yet via
241+
// Hoplite or Jackson.
242+
force("org.yaml:snakeyaml:1.31")
239243
}
240244
}
241245
}

0 commit comments

Comments
 (0)