1
0
mirror of synced 2026-08-05 17:57:15 +00:00
Files
spring-security/openid/spring-security-openid.gradle
T

31 lines
1.2 KiB
Groovy
Raw Permalink Normal View History

2019-10-22 18:18:24 +02:00
// 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>
2020-05-02 10:25:35 +02:00
// to <a href="https://openid.net/connect/">OpenID Connect</a>, which is supported by <code>spring-security-oauth2</code>.
2019-10-22 18:18:24 +02:00
2017-03-28 15:45:30 -05:00
apply plugin: 'io.spring.convention.spring-module'
dependencies {
management platform(project(":spring-security-dependencies"))
2021-04-04 07:31:47 -05:00
api project(':spring-security-core')
api project(':spring-security-web')
api('com.google.inject:guice') {
2017-09-22 12:10:30 -05:00
exclude group: 'aopalliance', module: 'aopalliance'
}
2017-03-28 15:45:30 -05:00
// 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.
2021-04-04 07:31:47 -05:00
api('org.openid4java:openid4java-nodeps') {
2017-03-28 15:45:30 -05:00
exclude group: 'com.google.code.guice', module: 'guice'
}
2021-04-04 07:31:47 -05:00
api 'org.springframework:spring-aop'
api 'org.springframework:spring-beans'
api 'org.springframework:spring-context'
api 'org.springframework:spring-core'
api 'org.springframework:spring-web'
2017-03-28 15:45:30 -05:00
provided 'javax.servlet:javax.servlet-api'
2021-04-04 07:31:47 -05:00
runtimeOnly 'net.sourceforge.nekohtml:nekohtml'
runtimeOnly 'org.apache.httpcomponents:httpclient'
2017-03-28 15:45:30 -05:00
}