mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-02-24 07:37:50 +00:00
This commit removes unnecessary main-branch merges starting from 8750608b5bca45525c99d0a41a20ed02de93d8c7 and adds the following needed commit(s) that were made afterward: - 5dce82c48bc0b174838501c5a111b2de70822914
28 lines
1017 B
Groovy
28 lines
1017 B
Groovy
apply plugin: 'io.spring.convention.spring-module'
|
|
|
|
dependencies {
|
|
management platform(project(":spring-security-dependencies"))
|
|
api project(':spring-security-web')
|
|
api "org.opensaml:opensaml-core"
|
|
api ("org.opensaml:opensaml-saml-api") {
|
|
exclude group: 'commons-logging', module: 'commons-logging'
|
|
}
|
|
api ("org.opensaml:opensaml-saml-impl") {
|
|
exclude group: 'commons-logging', module: 'commons-logging'
|
|
}
|
|
|
|
provided 'jakarta.servlet:jakarta.servlet-api'
|
|
|
|
optional 'com.fasterxml.jackson.core:jackson-databind'
|
|
|
|
testImplementation 'com.squareup.okhttp3:mockwebserver'
|
|
testImplementation "org.assertj:assertj-core"
|
|
testImplementation "org.skyscreamer:jsonassert"
|
|
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"
|
|
}
|