2020-04-24 02:37:17 +07:00
|
|
|
apply plugin: 'io.spring.convention.spring-module'
|
2020-06-06 04:15:22 +07:00
|
|
|
|
|
|
|
dependencies {
|
2020-07-24 20:37:49 +07:00
|
|
|
compile project(':spring-security-oauth2-authorization-server')
|
2020-06-06 04:15:22 +07:00
|
|
|
compile 'org.springframework.security:spring-security-core'
|
|
|
|
compile 'org.springframework.security:spring-security-config'
|
|
|
|
compile springCoreDependency
|
2020-07-22 16:06:09 +07:00
|
|
|
|
2020-07-24 20:37:49 +07:00
|
|
|
testCompile project(path: ':spring-security-oauth2-authorization-server', configuration: 'tests')
|
2020-06-11 03:23:11 +07:00
|
|
|
testCompile 'org.springframework.security:spring-security-test'
|
2020-06-06 04:15:22 +07:00
|
|
|
testCompile 'junit:junit'
|
|
|
|
testCompile 'org.assertj:assertj-core'
|
|
|
|
testCompile 'org.mockito:mockito-core'
|
2020-07-22 16:06:09 +07:00
|
|
|
testCompile 'com.jayway.jsonpath:json-path'
|
2020-06-06 04:15:22 +07:00
|
|
|
|
|
|
|
provided 'javax.servlet:javax.servlet-api'
|
|
|
|
}
|
2020-07-24 20:37:49 +07:00
|
|
|
|
|
|
|
jacoco {
|
|
|
|
toolVersion = '0.8.5'
|
|
|
|
}
|