2009-12-05 05:33:17 +08:00
|
|
|
// OpenID Module build file
|
|
|
|
|
|
|
|
dependencies {
|
2010-01-11 07:31:23 +08:00
|
|
|
compile project(':spring-security-core'),
|
|
|
|
project(':spring-security-web'),
|
2009-12-05 05:33:17 +08:00
|
|
|
"org.springframework:spring-aop:$springVersion",
|
|
|
|
"org.springframework:spring-context:$springVersion",
|
|
|
|
"org.springframework:spring-beans:$springVersion",
|
|
|
|
"org.springframework:spring-web:$springVersion"
|
|
|
|
|
2011-04-28 05:08:34 +08:00
|
|
|
// openid4java has a compile time dep on guice with a group
|
|
|
|
// name which is different from the maven central one.
|
|
|
|
// We use the maven central version here instead.
|
|
|
|
compile('org.openid4java:openid4java-nodeps:0.9.6') {
|
|
|
|
exclude group: 'com.google.code.guice', module: 'guice'
|
|
|
|
}
|
|
|
|
compile 'com.google.inject:guice:2.0'
|
|
|
|
|
2010-03-08 05:58:25 +08:00
|
|
|
provided 'javax.servlet:servlet-api:2.5'
|
2010-01-11 07:31:23 +08:00
|
|
|
|
2011-08-12 07:22:42 +08:00
|
|
|
runtime 'org.apache.httpcomponents:httpclient:4.1.2'
|
2011-04-27 12:14:58 +08:00
|
|
|
}
|