15 lines
375 B
Groovy
15 lines
375 B
Groovy
apply plugin: 'io.spring.convention.spring-module'
|
|
|
|
dependencies {
|
|
compile project(':spring-security-core')
|
|
compile project(':spring-security-web')
|
|
|
|
compile("org.opensaml:opensaml-core")
|
|
compile("org.opensaml:opensaml-saml-api")
|
|
compile("org.opensaml:opensaml-saml-impl")
|
|
|
|
provided 'javax.servlet:javax.servlet-api'
|
|
|
|
testCompile 'com.squareup.okhttp3:mockwebserver'
|
|
}
|