24 lines
400 B
Groovy
24 lines
400 B
Groovy
|
plugins {
|
||
|
id 'java'
|
||
|
id("com.github.bjornvester.wsdl2java") version "1.2"
|
||
|
}
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation 'com.sun.xml.ws:jaxws-ri:4.0.1'
|
||
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
|
||
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
|
||
|
}
|
||
|
|
||
|
test {
|
||
|
useJUnitPlatform()
|
||
|
}
|
||
|
|
||
|
|
||
|
wsdl2java {
|
||
|
cxfVersion.set("3.4.4")
|
||
|
}
|