Upgrade to SnakeYAML 2.0

Closes gh-35982
This commit is contained in:
Andy Wilkinson
2023-06-19 12:16:49 +01:00
parent a94ac2fb44
commit 1f9ce508f7
4 changed files with 14 additions and 32 deletions

View File

@@ -17,6 +17,17 @@ configurations {
remoteSpringApplicationExample
springApplicationExample
testSlices
asciidoctorExtensions {
resolutionStrategy {
eachDependency { dependency ->
// Downgrade SnakeYAML as Asciidoctor fails due to an incompatibility
// in the Pysch gem
if (dependency.requested.group.equals("org.yaml")) {
dependency.useVersion("1.33")
}
}
}
}
}
jar {