mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-11-10 11:39:02 +00:00
Since this module was already using the jackson sub-package for Jackson 2 support, both Jackson 2 and Jackson 3 support lives in the same subpackage and the former package-private classes has been renamed with a Jackson2 qualifier. See gh-17832 Signed-off-by: Sébastien Deleuze <sdeleuze@users.noreply.github.com>
45 lines
1.7 KiB
Groovy
45 lines
1.7 KiB
Groovy
plugins {
|
|
id 'security-nullability'
|
|
}
|
|
|
|
apply plugin: 'io.spring.convention.spring-module'
|
|
|
|
dependencies {
|
|
management platform(project(":spring-security-dependencies"))
|
|
api project(':spring-security-core')
|
|
api project(':spring-security-web')
|
|
api 'org.springframework:spring-core'
|
|
api 'org.springframework:spring-beans'
|
|
api 'org.springframework:spring-web'
|
|
api libs.webauthn4j.core
|
|
|
|
optional 'org.springframework:spring-jdbc'
|
|
optional 'org.springframework:spring-tx'
|
|
optional 'tools.jackson.core:jackson-databind'
|
|
|
|
provided 'jakarta.servlet:jakarta.servlet-api'
|
|
|
|
testImplementation project(path: ':spring-security-core', configuration: 'tests')
|
|
testImplementation 'io.projectreactor:reactor-test'
|
|
testImplementation 'jakarta.xml.bind:jakarta.xml.bind-api'
|
|
testImplementation 'jakarta.websocket:jakarta.websocket-api'
|
|
testImplementation 'jakarta.websocket:jakarta.websocket-client-api'
|
|
testImplementation 'org.hamcrest:hamcrest'
|
|
testImplementation 'org.mockito:mockito-core'
|
|
testImplementation 'org.skyscreamer:jsonassert'
|
|
testImplementation 'org.springframework:spring-webflux'
|
|
testImplementation 'org.synchronoss.cloud:nio-multipart-parser'
|
|
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"
|
|
testImplementation "org.mockito:mockito-junit-jupiter"
|
|
testImplementation "org.springframework:spring-test"
|
|
testImplementation "org.springframework:spring-webmvc"
|
|
testImplementation 'com.squareup.okhttp3:mockwebserver'
|
|
|
|
testRuntimeOnly 'org.hsqldb:hsqldb'
|
|
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
|
|
}
|