2009-12-04 16:33:17 -05:00
|
|
|
// OpenID Module build file
|
|
|
|
|
|
|
|
dependencies {
|
2015-03-23 12:14:26 -04:00
|
|
|
compile project(':spring-security-core'),
|
|
|
|
project(':spring-security-web'),
|
|
|
|
springCoreDependency,
|
|
|
|
"org.springframework:spring-aop:$springVersion",
|
|
|
|
"org.springframework:spring-context:$springVersion",
|
|
|
|
"org.springframework:spring-beans:$springVersion",
|
|
|
|
"org.springframework:spring-web:$springVersion"
|
2009-12-04 16:33:17 -05:00
|
|
|
|
2015-03-23 12:14:26 -04: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'
|
2011-04-27 17:08:34 -04:00
|
|
|
|
2015-03-23 12:14:26 -04:00
|
|
|
provided "javax.servlet:javax.servlet-api:$servletApiVersion"
|
2010-01-10 18:31:23 -05:00
|
|
|
|
2015-03-23 12:14:26 -04:00
|
|
|
runtime 'org.apache.httpcomponents:httpclient:4.2.3',
|
|
|
|
'net.sourceforge.nekohtml:nekohtml:1.9.20'
|
2011-09-18 19:52:27 -04:00
|
|
|
}
|