File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -274,10 +274,7 @@ dependencies {
274274 // ensuring brought asm version brought in by spock is up-to-date
275275 testImplementation buildLibs. asm
276276 integTestImplementation buildLibs. asm
277- integTestImplementation(' org.ow2.asm:asm:9.6' )
278- api(" org.yaml:snakeyaml" ) {
279- version { strictly(versions. snakeyaml) }
280- }
277+ api(buildLibs. snakeyaml)
281278 }
282279 // Forcefully downgrade the jackson platform as used in production
283280 api enforcedPlatform(buildLibs. jackson. platform)
@@ -314,7 +311,7 @@ dependencies {
314311 compileOnly buildLibs. checkstyle
315312 compileOnly buildLibs. reflections
316313
317- implementation ' com.github. javaparser:javaparser-core:3.18.0 '
314+ implementation buildLibs . javaparser
318315
319316 runtimeOnly " org.elasticsearch.gradle:reaper:$version "
320317 testImplementation buildLibs. checkstyle
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ hamcrest = "org.hamcrest:hamcrest:2.1"
2222httpcore = " org.apache.httpcomponents:httpcore:4.4.12"
2323httpclient = " org.apache.httpcomponents:httpclient:4.5.14"
2424idea-ext = " gradle.plugin.org.jetbrains.gradle.plugin.idea-ext:gradle-idea-ext:1.1.4"
25+ javaparser = " com.github.javaparser:javaparser-core:3.18.0"
2526json-schema-validator = " com.networknt:json-schema-validator:1.0.72"
2627json-assert = " org.skyscreamer:jsonassert:1.5.0"
2728jackson-core = { group = " com.fasterxml.jackson.core" , name =" jackson-core" , version.ref =" jackson" }
@@ -39,6 +40,7 @@ mockito-core = "org.mockito:mockito-core:1.9.5"
3940nebula-info = " com.netflix.nebula:gradle-info-plugin:11.3.3"
4041reflections = " org.reflections:reflections:0.9.12"
4142shadow-plugin = " com.github.breskeby:shadow:3b035f2"
43+ snakeyaml = { group = " org.yaml" , name = " snakeyaml" , version = { strictly = " 2.0" } }
4244spock-core = { group = " org.spockframework" , name =" spock-core" , version.ref =" spock" }
4345spock-junit4 = { group = " org.spockframework" , name =" spock-junit4" , version.ref =" spock" }
4446spock-platform = { group = " org.spockframework" , name =" spock-bom" , version.ref =" spock" }
You can’t perform that action at this time.
0 commit comments