Manna Anam
09/11/2024, 8:41 PMManna Anam
09/11/2024, 8:42 PMplugins {
id 'java'
}
group = 'org.example'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
testImplementation "com.github.tomakehurst:wiremock-jre8:3.0.1"
testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
}
test {
useJUnitPlatform()
}
my question - What is the recommendation here? i.e the recommended course of action?Lee Turner
09/12/2024, 6:36 AMLee Turner
09/12/2024, 7:07 AMconstraints {
implementation "net.minidev:json-smart:2.5.1", {
because 'Pinning this above the transitive version from json-path to get CVE fix'
}
}
Manna Anam
09/12/2024, 3:25 PM