We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20eeeef commit 5292b37Copy full SHA for 5292b37
build.gradle
@@ -23,6 +23,16 @@ allprojects {
23
}
24
25
subprojects {
26
+ configurations.configureEach {
27
+ resolutionStrategy.eachDependency {
28
+ if (requested.group == 'tools.jackson.core' && requested.name == 'jackson-core'
29
+ && requested.version != null && requested.version < '3.1.1') {
30
+ useVersion('3.1.1')
31
+ because('GHSA-2m67-wjpj-xhg9: Jackson Core 3.0.0-3.1.0 maxDocumentLength bypass')
32
+ }
33
34
35
+
36
if(it.parent.name == 'examples') {
37
apply plugin: 'java'
38
} else {
0 commit comments