49 lines
1.3 KiB
Plaintext
49 lines
1.3 KiB
Plaintext
plugins {
|
|
id("org.unbroken-dome.xjc") version "2.0.0"
|
|
id("otel.javaagent-instrumentation")
|
|
}
|
|
|
|
muzzle {
|
|
pass {
|
|
group.set("org.springframework.ws")
|
|
module.set("spring-ws-core")
|
|
versions.set("[2.0.0.RELEASE,]")
|
|
// broken versions, jars don't contain classes
|
|
skip("3.0.11.RELEASE", "3.1.0")
|
|
assertInverse.set(true)
|
|
}
|
|
}
|
|
|
|
sourceSets {
|
|
test {
|
|
resources {
|
|
srcDirs("src/test/schema")
|
|
}
|
|
}
|
|
}
|
|
|
|
tasks {
|
|
named<Checkstyle>("checkstyleTest") {
|
|
// exclude generated web service classes
|
|
exclude("**/hello_web_service/**")
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly("org.springframework.ws:spring-ws-core:2.0.0.RELEASE")
|
|
|
|
compileOnly("com.google.auto.value:auto-value-annotations")
|
|
annotationProcessor("com.google.auto.value:auto-value")
|
|
|
|
testLibrary("org.springframework.boot:spring-boot-starter-web-services:2.0.0.RELEASE")
|
|
testLibrary("org.springframework.boot:spring-boot-starter-web:2.0.0.RELEASE")
|
|
|
|
testImplementation("wsdl4j:wsdl4j:1.6.3")
|
|
testImplementation("com.sun.xml.messaging.saaj:saaj-impl:1.5.2")
|
|
testImplementation("javax.xml.bind:jaxb-api:2.2.11")
|
|
testImplementation("com.sun.xml.bind:jaxb-core:2.2.11")
|
|
testImplementation("com.sun.xml.bind:jaxb-impl:2.2.11")
|
|
|
|
testInstrumentation(project(":instrumentation:servlet:servlet-3.0:javaagent"))
|
|
}
|