Files
spring-ws/spring-ws-test/build.gradle
Stéphane Nicoll 7961ac0d99 Remove deprecated code
Closes gh-1560
2025-05-14 15:43:24 +02:00

24 lines
701 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-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")
}