openid.gradle 895 B

12345678910111213141516171819202122
  1. // OpenID Module build file
  2. dependencies {
  3. compile project(':spring-security-core'),
  4. project(':spring-security-web'),
  5. "org.springframework:spring-aop:$springVersion",
  6. "org.springframework:spring-tx:$springVersion",
  7. "org.springframework:spring-context:$springVersion",
  8. "org.springframework:spring-beans:$springVersion",
  9. "org.springframework:spring-web:$springVersion"
  10. // openid4java has a compile time dep on guice with a group
  11. // name which is different from the maven central one.
  12. // We use the maven central version here instead.
  13. compile('org.openid4java:openid4java-nodeps:0.9.6') {
  14. exclude group: 'com.google.code.guice', module: 'guice'
  15. }
  16. compile 'com.google.inject:guice:2.0'
  17. provided 'javax.servlet:servlet-api:2.5'
  18. runtime 'org.apache.httpcomponents:httpclient:4.1.1'
  19. }