spring-security-openid.gradle 1.2 KB

1234567891011121314151617181920212223242526272829
  1. // NOTE: The OpenID 1.0 and 2.0 protocols have been deprecated and users are
  2. // <a href="https://openid.net/specs/openid-connect-migration-1_0.html">encouraged to migrate</a>
  3. // to <a href="https://openid.net/connect/">OpenID Connect</a>, which is supported by <code>spring-security-oauth2</code>.
  4. apply plugin: 'io.spring.convention.spring-module'
  5. dependencies {
  6. compile project(':spring-security-core')
  7. compile project(':spring-security-web')
  8. compile('com.google.inject:guice') {
  9. exclude group: 'aopalliance', module: 'aopalliance'
  10. }
  11. // openid4java has a compile time dep on guice with a group
  12. // name which is different from the maven central one.
  13. // We use the maven central version here instead.
  14. compile('org.openid4java:openid4java-nodeps') {
  15. exclude group: 'com.google.code.guice', module: 'guice'
  16. }
  17. compile 'org.springframework:spring-aop'
  18. compile 'org.springframework:spring-beans'
  19. compile 'org.springframework:spring-context'
  20. compile 'org.springframework:spring-core'
  21. compile 'org.springframework:spring-web'
  22. provided 'javax.servlet:javax.servlet-api'
  23. runtime 'net.sourceforge.nekohtml:nekohtml'
  24. runtime 'org.apache.httpcomponents:httpclient'
  25. }