spring-authorization-server/config/spring-security-config2.gradle

22 lines
685 B
Groovy
Raw Normal View History

apply plugin: 'io.spring.convention.spring-module'
dependencies {
2020-07-24 20:37:49 +07:00
compile project(':spring-security-oauth2-authorization-server')
compile 'org.springframework.security:spring-security-core'
compile 'org.springframework.security:spring-security-config'
compile springCoreDependency
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'
testCompile 'junit:junit'
testCompile 'org.assertj:assertj-core'
testCompile 'org.mockito:mockito-core'
testCompile 'com.jayway.jsonpath:json-path'
provided 'javax.servlet:javax.servlet-api'
}
2020-07-24 20:37:49 +07:00
jacoco {
toolVersion = '0.8.5'
}