spring-security-openid.gradle 881 B

12345678910111213141516171819202122232425
  1. apply plugin: 'io.spring.convention.spring-module'
  2. dependencies {
  3. compile project(':spring-security-core')
  4. compile project(':spring-security-web')
  5. compile('com.google.inject:guice') {
  6. exclude group: 'aopalliance', module: 'aopalliance'
  7. }
  8. // openid4java has a compile time dep on guice with a group
  9. // name which is different from the maven central one.
  10. // We use the maven central version here instead.
  11. compile('org.openid4java:openid4java-nodeps') {
  12. exclude group: 'com.google.code.guice', module: 'guice'
  13. }
  14. compile 'org.springframework:spring-aop'
  15. compile 'org.springframework:spring-beans'
  16. compile 'org.springframework:spring-context'
  17. compile 'org.springframework:spring-core'
  18. compile 'org.springframework:spring-web'
  19. provided 'javax.servlet:javax.servlet-api'
  20. runtime 'net.sourceforge.nekohtml:nekohtml'
  21. runtime 'org.apache.httpcomponents:httpclient'
  22. }