Skip to content

Commit a620113

Browse files
committed
Add test dependencies
Issue gh-17880
1 parent 1ff1d88 commit a620113

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

dependencies/spring-security-dependencies.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ dependencies {
6060
api libs.org.hamcrest
6161
api libs.org.hibernate.orm.hibernate.core
6262
api libs.org.hsqldb
63+
api libs.com.jayway.jsonpath.json.path
6364
api libs.org.apereo.cas.client.cas.client.core
6465
api libs.org.opensaml.opensaml5.saml.api
6566
api libs.org.opensaml.opensaml5.saml.impl

gradle/libs.versions.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ com-nimbusds-oauth2-oidc-sdk = "com.nimbusds:oauth2-oidc-sdk:11.26.1"
2424
com-squareup-okhttp3-mockwebserver = { module = "com.squareup.okhttp3:mockwebserver", version.ref = "com-squareup-okhttp3" }
2525
com-squareup-okhttp3-okhttp = { module = "com.squareup.okhttp3:okhttp", version.ref = "com-squareup-okhttp3" }
2626
com-unboundid-unboundid-ldapsdk = "com.unboundid:unboundid-ldapsdk:7.0.3"
27+
com-jayway-jsonpath-json-path = "com.jayway.jsonpath:json-path:2.9.0"
2728
commons-collections = "commons-collections:commons-collections:3.2.2"
2829
io-micrometer-context-propagation = "io.micrometer:context-propagation:1.1.3"
2930
io-micrometer-micrometer-observation = "io.micrometer:micrometer-observation:1.14.11"

oauth2/oauth2-authorization-server/spring-security-oauth2-authorization-server.gradle

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,18 @@ dependencies {
1717
optional "com.fasterxml.jackson.datatype:jackson-datatype-jsr310"
1818
optional "org.springframework:spring-jdbc"
1919

20+
testImplementation project(":spring-security-test")
21+
testImplementation "org.springframework:spring-webmvc"
22+
testImplementation "org.bouncycastle:bcpkix-jdk18on"
23+
testImplementation "org.bouncycastle:bcprov-jdk18on"
24+
testImplementation "org.junit.jupiter:junit-jupiter"
25+
testImplementation "org.assertj:assertj-core"
26+
testImplementation "org.mockito:mockito-core"
27+
testImplementation "com.jayway.jsonpath:json-path"
28+
testImplementation "com.squareup.okhttp3:mockwebserver"
29+
30+
testRuntimeOnly "org.hsqldb:hsqldb"
31+
testRuntimeOnly "org.junit.platform:junit-platform-launcher"
32+
2033
provided "jakarta.servlet:jakarta.servlet-api"
2134
}

0 commit comments

Comments
 (0)