mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-02-22 22:46:15 +00:00
It is still required as a compile-time dependency by classes which use Spring's JDBC support, but it doesn't really have to be used in many interfaces and classes which are not necessarily backed by JDBC implementations.
15 lines
544 B
Groovy
15 lines
544 B
Groovy
// OpenID Module build file
|
|
|
|
dependencies {
|
|
compile project(':spring-security-core'),
|
|
project(':spring-security-web'),
|
|
'org.openid4java:openid4java-nodeps:0.9.5',
|
|
"org.springframework:spring-aop:$springVersion",
|
|
"org.springframework:spring-context:$springVersion",
|
|
"org.springframework:spring-beans:$springVersion",
|
|
"org.springframework:spring-web:$springVersion"
|
|
|
|
provided 'javax.servlet:servlet-api:2.5'
|
|
|
|
runtime 'commons-httpclient:commons-httpclient:3.1'
|
|
} |