spring-authorization-server/oauth2-authorization-server/spring-security-oauth2-auth...
Joe Grandja c30488cd30 Add JWK Set Endpoint Filter
Closes gh-82
2020-08-18 06:28:16 -04:00

24 lines
752 B
Groovy

apply plugin: 'io.spring.convention.spring-module'
dependencies {
compile project(':spring-security-core2')
compile project(':spring-security-oauth2-jose2')
compile 'org.springframework.security:spring-security-core'
compile 'org.springframework.security:spring-security-web'
compile 'org.springframework.security:spring-security-oauth2-core'
compile springCoreDependency
compile 'com.fasterxml.jackson.core:jackson-databind'
testCompile project(path: ':spring-security-crypto2', configuration: 'tests')
testCompile 'org.springframework:spring-webmvc'
testCompile 'junit:junit'
testCompile 'org.assertj:assertj-core'
testCompile 'org.mockito:mockito-core'
provided 'javax.servlet:javax.servlet-api'
}
jacoco {
toolVersion = '0.8.5'
}