openid.gradle 855 B

123456789101112131415161718192021222324
  1. // OpenID Module build file
  2. dependencies {
  3. compile project(':spring-security-core'),
  4. project(':spring-security-web'),
  5. springCoreDependency,
  6. "org.springframework:spring-aop:$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:javax.servlet-api:$servletApiVersion"
  18. runtime 'org.apache.httpcomponents:httpclient:4.2.3',
  19. 'net.sourceforge.nekohtml:nekohtml:1.9.20'
  20. }