-
Notifications
You must be signed in to change notification settings - Fork 314
/
Copy pathbuild.gradle
34 lines (29 loc) · 1.01 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
plugins {
id "java-library"
id "maven-publish"
id "org.springframework.ws.conventions"
id "org.springframework.ws.optional-dependencies"
}
description = "Spring XML"
repositories {
mavenCentral()
}
dependencies {
api("com.sun.xml.messaging.saaj:saaj-impl") {
exclude(group: "org.eclipse.angus", module: "angus-activation")
}
api("jakarta.activation:jakarta.activation-api")
api("jakarta.xml.soap:jakarta.xml.soap-api")
api("org.springframework:spring-beans")
api("org.springframework:spring-context")
optional("org.apache.ws.xmlschema:xmlschema-core")
optional("jaxen:jaxen")
testImplementation("org.apache.commons:commons-collections4")
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.mockito:mockito-core")
testImplementation("org.xmlunit:xmlunit-assertj")
}