2017-03-28 15:45:30 -05:00
|
|
|
apply plugin: 'io.spring.convention.spring-module'
|
|
|
|
|
|
|
|
dependencies {
|
2021-10-05 11:23:29 -03:00
|
|
|
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 'org.springframework:spring-core'
|
|
|
|
api 'org.springframework:spring-test'
|
2017-03-28 15:45:30 -05:00
|
|
|
|
|
|
|
optional project(':spring-security-config')
|
2019-11-04 15:17:03 -07:00
|
|
|
optional project(':spring-security-oauth2-client')
|
2019-05-08 20:55:04 +02:00
|
|
|
optional project(':spring-security-oauth2-jose')
|
2019-05-21 17:59:55 -06:00
|
|
|
optional project(':spring-security-oauth2-resource-server')
|
2017-05-19 14:40:40 -05:00
|
|
|
optional 'io.projectreactor:reactor-core'
|
2020-05-27 14:33:02 -06:00
|
|
|
optional 'org.springframework:spring-webmvc'
|
2017-07-13 20:47:09 -05:00
|
|
|
optional 'org.springframework:spring-webflux'
|
2017-03-28 15:45:30 -05:00
|
|
|
|
2021-10-11 16:01:02 -03:00
|
|
|
provided 'jakarta.servlet:jakarta.servlet-api'
|
2017-03-28 15:45:30 -05:00
|
|
|
|
2021-04-04 07:31:47 -05:00
|
|
|
testImplementation project(path : ':spring-security-config', configuration : 'tests')
|
|
|
|
testImplementation 'com.fasterxml.jackson.core:jackson-databind'
|
|
|
|
testImplementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310'
|
|
|
|
testImplementation 'io.projectreactor:reactor-test'
|
2021-10-11 16:01:02 -03:00
|
|
|
testImplementation 'jakarta.xml.bind:jakarta.xml.bind-api'
|
2021-07-12 13:06:44 -05:00
|
|
|
testImplementation "org.assertj:assertj-core"
|
|
|
|
testImplementation "org.junit.jupiter:junit-jupiter-api"
|
|
|
|
testImplementation "org.junit.jupiter:junit-jupiter-params"
|
|
|
|
testImplementation "org.junit.jupiter:junit-jupiter-engine"
|
|
|
|
testImplementation "org.mockito:mockito-core"
|
2021-07-07 09:11:53 -05:00
|
|
|
testImplementation 'org.mockito:mockito-inline'
|
2021-07-12 13:06:44 -05:00
|
|
|
testImplementation "org.mockito:mockito-junit-jupiter"
|
|
|
|
testImplementation "org.springframework:spring-test"
|
2021-04-04 07:31:47 -05:00
|
|
|
testImplementation 'org.skyscreamer:jsonassert'
|
|
|
|
testImplementation 'org.springframework:spring-webmvc'
|
|
|
|
testImplementation 'org.springframework:spring-tx'
|
2017-03-28 15:45:30 -05:00
|
|
|
}
|