|
|
|
@ -1,13 +1,12 @@ |
|
|
|
apply plugin: 'io.spring.convention.spring-module' |
|
|
|
apply plugin: 'io.spring.convention.spring-module' |
|
|
|
|
|
|
|
|
|
|
|
dependencies { |
|
|
|
dependencies { |
|
|
|
|
|
|
|
compile project(':spring-security-oauth2-authorization-server') |
|
|
|
compile 'org.springframework.security:spring-security-core' |
|
|
|
compile 'org.springframework.security:spring-security-core' |
|
|
|
compile 'org.springframework.security:spring-security-config' |
|
|
|
compile 'org.springframework.security:spring-security-config' |
|
|
|
compile springCoreDependency |
|
|
|
compile springCoreDependency |
|
|
|
|
|
|
|
|
|
|
|
optional project(':spring-security-oauth2-authorization-server') |
|
|
|
testCompile project(path: ':spring-security-oauth2-authorization-server', configuration: 'tests') |
|
|
|
optional project(path: ':spring-security-oauth2-authorization-server', configuration: 'tests') |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
testCompile 'org.springframework.security:spring-security-test' |
|
|
|
testCompile 'org.springframework.security:spring-security-test' |
|
|
|
testCompile 'junit:junit' |
|
|
|
testCompile 'junit:junit' |
|
|
|
testCompile 'org.assertj:assertj-core' |
|
|
|
testCompile 'org.assertj:assertj-core' |
|
|
|
@ -16,3 +15,7 @@ dependencies { |
|
|
|
|
|
|
|
|
|
|
|
provided 'javax.servlet:javax.servlet-api' |
|
|
|
provided 'javax.servlet:javax.servlet-api' |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
jacoco { |
|
|
|
|
|
|
|
toolVersion = '0.8.5' |
|
|
|
|
|
|
|
} |
|
|
|
|