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 version, jar doesn't contain classes skip("3.1.0") assertInverse.set(true) } } sourceSets { test { resources { srcDirs("src/test/schema") } } } tasks { named("checkstyleTest") { // exclude generated web service classes exclude("**/hello_web_service/**") } } dependencies { compileOnly("org.springframework.ws:spring-ws-core:2.0.0.RELEASE") 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")) }