2020-04-24 02:37:17 +07:00
|
|
|
apply plugin: 'io.spring.convention.spring-module'
|
2020-04-24 03:45:34 +07:00
|
|
|
|
|
|
|
dependencies {
|
2020-08-20 01:29:14 +07:00
|
|
|
compile 'org.springframework.security:spring-security-config'
|
2020-04-24 03:45:34 +07:00
|
|
|
compile 'org.springframework.security:spring-security-web'
|
|
|
|
compile 'org.springframework.security:spring-security-oauth2-core'
|
2020-08-20 01:29:14 +07:00
|
|
|
compile 'org.springframework.security:spring-security-oauth2-jose'
|
2020-04-24 03:45:34 +07:00
|
|
|
compile springCoreDependency
|
2020-08-20 01:29:14 +07:00
|
|
|
compile 'com.nimbusds:nimbus-jose-jwt'
|
2020-04-24 03:45:34 +07:00
|
|
|
compile 'com.fasterxml.jackson.core:jackson-databind'
|
|
|
|
|
2020-08-20 01:29:14 +07:00
|
|
|
testCompile 'org.springframework.security:spring-security-test'
|
2020-06-12 00:25:18 +07:00
|
|
|
testCompile 'org.springframework:spring-webmvc'
|
2020-04-24 03:45:34 +07:00
|
|
|
testCompile 'junit:junit'
|
|
|
|
testCompile 'org.assertj:assertj-core'
|
|
|
|
testCompile 'org.mockito:mockito-core'
|
2020-08-20 01:29:14 +07:00
|
|
|
testCompile 'com.jayway.jsonpath:json-path'
|
2020-04-24 03:45:34 +07:00
|
|
|
|
|
|
|
provided 'javax.servlet:javax.servlet-api'
|
|
|
|
}
|
2020-07-24 20:37:49 +07:00
|
|
|
|
|
|
|
jacoco {
|
|
|
|
toolVersion = '0.8.5'
|
|
|
|
}
|