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

32 lines
1.3 KiB
Groovy
Raw Normal View History

2018-06-12 21:33:26 -06: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')
api project(':spring-security-web')
2021-07-12 13:06:44 -05:00
api 'org.springframework:spring-core'
2018-06-12 21:33:26 -06:00
optional project(':spring-security-oauth2-jose')
2018-10-11 15:20:02 -06:00
optional 'com.nimbusds:oauth2-oidc-sdk'
2018-07-06 10:05:41 -05:00
optional 'io.projectreactor:reactor-core'
optional 'org.springframework:spring-webflux'
2018-06-12 21:33:26 -06:00
2021-10-11 16:01:02 -03:00
provided 'jakarta.servlet:jakarta.servlet-api'
2018-07-06 10:05:41 -05:00
2021-04-04 07:31:47 -05:00
testImplementation project(path: ':spring-security-oauth2-jose', configuration: 'tests')
testImplementation 'com.squareup.okhttp3:mockwebserver'
testImplementation 'com.fasterxml.jackson.core:jackson-databind'
testImplementation 'io.projectreactor.netty:reactor-netty'
testImplementation 'io.projectreactor:reactor-test'
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'
2018-06-12 21:33:26 -06:00
}