2020-04-24 02:37:17 +07:00
|
|
|
apply plugin: 'io.spring.convention.spring-module'
|
2020-04-24 03:45:34 +07:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
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.nimbusds:oauth2-oidc-sdk'
|
|
|
|
compile 'com.fasterxml.jackson.core:jackson-databind'
|
|
|
|
|
|
|
|
optional 'com.nimbusds:nimbus-jose-jwt'
|
|
|
|
optional 'org.springframework.security:spring-security-oauth2-jose'
|
|
|
|
|
|
|
|
testCompile 'junit:junit'
|
|
|
|
testCompile 'org.assertj:assertj-core'
|
|
|
|
testCompile 'org.mockito:mockito-core'
|
|
|
|
testCompile 'com.squareup.okhttp3:mockwebserver'
|
|
|
|
|
|
|
|
provided 'javax.servlet:javax.servlet-api'
|
|
|
|
}
|
2020-04-26 02:25:03 +07:00
|
|
|
|
|
|
|
jacoco {
|
|
|
|
toolVersion = '0.8.5'
|
|
|
|
}
|