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