Files
spring-ws/spring-ws-test/build.gradle
Stéphane Nicoll a395d8215c Clean logging configuration in tests
Use log4j (2) consistently and remove old log4j 1 configuration.

Closes gh-1476
2025-03-04 17:56:22 +01:00

25 lines
736 B
Groovy

plugins {
id "java-library"
id "maven-publish"
id "org.springframework.ws.conventions"
}
description = "Spring WS Test"
dependencies {
api(project(":spring-ws-core"))
api(project(":spring-xml"))
api("org.springframework:spring-context")
api("org.xmlunit:xmlunit-core")
api("org.xmlunit:xmlunit-legacy")
api("org.xmlunit:xmlunit-placeholders")
testImplementation("org.apache.logging.log4j:log4j-core")
testImplementation("org.apache.logging.log4j:log4j-slf4j2-impl")
testImplementation("org.assertj:assertj-core")
testImplementation("org.easymock:easymock")
testImplementation("org.junit.jupiter:junit-jupiter")
testImplementation("org.springframework:spring-test")
testImplementation("org.xmlunit:xmlunit-assertj")
}