We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 500daea commit 9115b1dCopy full SHA for 9115b1d
gradle/plugins/antora/build.gradle.kts
@@ -8,7 +8,23 @@ plugins {
8
dependencies {
9
implementation(projects.buildParameters)
10
implementation(libs.plugins.node.markerCoordinates)
11
+ constraints {
12
+ implementation("com.fasterxml.jackson.core:jackson-core") {
13
+ version {
14
+ require("2.15.0")
15
+ }
16
+ because("Workaround for CVE-2025-52999")
17
18
19
implementation(libs.plugins.spring.antora.markerCoordinates)
20
21
+ implementation("org.yaml:snakeyaml") {
22
23
+ require("2.0")
24
25
+ because("Workaround for CVE-2022-1471")
26
27
28
}
29
30
tasks.compileJava {
0 commit comments