* Create spring-security-kerberos-web to limit dependencies for non-web based projects * Add org.springframework.security.kerberos.authentication to better align with Spring Security packaging * Add org.springframework.security.kerberos.authentication.sun to isolate Sun implementations of APIs * Remove unnecessary dependencies Fixes gh-20
19 lines
736 B
Groovy
19 lines
736 B
Groovy
rootProject.name = 'spring-security-kerberos'
|
|
|
|
include 'spring-security-kerberos-core'
|
|
include 'spring-security-kerberos-client'
|
|
include 'spring-security-kerberos-test'
|
|
include 'spring-security-kerberos-web'
|
|
include 'spring-security-kerberos-samples'
|
|
include 'spring-security-kerberos-samples:sec-server-client-auth'
|
|
include 'spring-security-kerberos-samples:sec-server-spnego-form-auth'
|
|
include 'spring-security-kerberos-samples:sec-server-spnego-form-auth-xml'
|
|
include 'spring-security-kerberos-samples:sec-server-win-auth'
|
|
include 'spring-security-kerberos-samples:sec-client-rest-template'
|
|
|
|
rootProject.children.find {
|
|
if (it.name == 'spring-security-kerberos-samples') {
|
|
it.name = 'spring-security-kerberos-samples-common'
|
|
}
|
|
}
|