spring-security/openid/openid.gradle

22 lines
895 B
Groovy
Raw Permalink Normal View History

// OpenID Module build file
dependencies {
compile project(':spring-security-core'),
project(':spring-security-web'),
"org.springframework:spring-aop:$springVersion",
2012-10-01 14:46:37 -05:00
"org.springframework:spring-tx:$springVersion",
"org.springframework:spring-context:$springVersion",
"org.springframework:spring-beans:$springVersion",
"org.springframework:spring-web:$springVersion"
2012-10-01 14:46:37 -05: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-05 23:20:15 +00:00
provided 'javax.servlet:servlet-api:2.5'
2012-10-01 14:46:37 -05:00
runtime 'org.apache.httpcomponents:httpclient:4.1.1'
}