1
0
mirror of synced 2026-05-22 21:33:16 +00:00
Files
spring-security/oauth2/oauth2-jose/spring-security-oauth2-jose.gradle
T

29 lines
1.2 KiB
Groovy
Raw Normal View History

2017-07-04 17:30:54 -04:00
apply plugin: 'io.spring.convention.spring-module'
dependencies {
2021-10-05 11:23:29 -03:00
management platform(project(":spring-security-dependencies"))
2021-04-04 07:31:47 -05:00
api project(':spring-security-core')
api project(':spring-security-oauth2-core')
2021-07-12 13:06:44 -05:00
api 'org.springframework:spring-core'
2021-04-04 07:31:47 -05:00
api 'com.nimbusds:nimbus-jose-jwt'
2018-06-14 16:33:27 -05:00
optional 'io.projectreactor:reactor-core'
optional 'org.springframework:spring-webflux'
2024-04-15 15:32:08 -06:00
testImplementation "org.bouncycastle:bcpkix-jdk18on"
testImplementation "org.bouncycastle:bcprov-jdk18on"
testImplementation "jakarta.servlet:jakarta.servlet-api"
2021-04-04 07:31:47 -05:00
testImplementation 'com.squareup.okhttp3:mockwebserver'
testImplementation 'io.projectreactor.netty:reactor-netty'
testImplementation 'com.fasterxml.jackson.core:jackson-databind'
2021-07-12 13:06:44 -05:00
testImplementation "org.assertj:assertj-core"
testImplementation "org.junit.jupiter:junit-jupiter-api"
testImplementation "org.junit.jupiter:junit-jupiter-params"
testImplementation "org.junit.jupiter:junit-jupiter-engine"
testImplementation "org.mockito:mockito-core"
testImplementation "org.mockito:mockito-junit-jupiter"
testImplementation "org.springframework:spring-test"
2025-03-17 14:16:44 -05:00
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
2017-07-04 17:30:54 -04:00
}