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
Marcus Da Coregio d2e5f2ae0d Update Gradle to 7.2
Closes gh-9615
2021-10-04 15:19:40 -03:00

24 lines
942 B
Groovy

apply plugin: 'io.spring.convention.spring-module'
dependencies {
api platform(project(":spring-security-dependencies"))
api project(':spring-security-core')
api project(':spring-security-oauth2-core')
api 'org.springframework:spring-core'
api 'com.nimbusds:nimbus-jose-jwt'
optional 'io.projectreactor:reactor-core'
optional 'org.springframework:spring-webflux'
testImplementation 'com.squareup.okhttp3:mockwebserver'
testImplementation 'io.projectreactor.netty:reactor-netty'
testImplementation 'com.fasterxml.jackson.core:jackson-databind'
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"
}