spring-security-openid.gradle 821 B

1234567891011121314151617181920212223
  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. // openid4java has a compile time dep on guice with a group
  7. // name which is different from the maven central one.
  8. // We use the maven central version here instead.
  9. compile('org.openid4java:openid4java-nodeps') {
  10. exclude group: 'com.google.code.guice', module: 'guice'
  11. }
  12. compile 'org.springframework:spring-aop'
  13. compile 'org.springframework:spring-beans'
  14. compile 'org.springframework:spring-context'
  15. compile 'org.springframework:spring-core'
  16. compile 'org.springframework:spring-web'
  17. provided 'javax.servlet:javax.servlet-api'
  18. runtime 'net.sourceforge.nekohtml:nekohtml'
  19. runtime 'org.apache.httpcomponents:httpclient'
  20. }