Skip to content

Commit 983dfcd

Browse files
authored
chore(deps): bump transitive dep jsonpath to 2.9.0 (#640)
* fix vulnerability https://github.com/navikt/mock-oauth2-server/security/dependabot/40
1 parent 3cbb107 commit 983dfcd

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

build.gradle.kts

+8
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ val bouncyCastleVersion = "1.70"
1616
val springBootVersion = "3.2.2"
1717
val reactorTestVersion = "3.6.2"
1818
val ktorVersion = "2.3.8"
19+
val jsonPathVersion = "2.9.0"
1920

2021
val mavenRepoBaseUrl = "https://oss.sonatype.org"
2122
val mainClassKt = "no.nav.security.mock.oauth2.StandaloneMockOAuth2ServerKt"
@@ -77,6 +78,13 @@ dependencies {
7778
testImplementation("org.springframework.boot:spring-boot-starter-oauth2-resource-server:$springBootVersion")
7879
testImplementation("org.springframework.boot:spring-boot-starter-oauth2-client:$springBootVersion")
7980
testImplementation("org.springframework.boot:spring-boot-starter-test:$springBootVersion")
81+
constraints {
82+
testImplementation("com.jayway.jsonpath:json-path") {
83+
version {
84+
require(jsonPathVersion)
85+
}
86+
}
87+
}
8088
testImplementation("org.springframework.boot:spring-boot-test:$springBootVersion")
8189
constraints {
8290
testImplementation("org.yaml:snakeyaml:2.2") {

0 commit comments

Comments
 (0)