-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
35 lines (31 loc) · 918 Bytes
/
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
35
plugins {
id 'org.springframework.boot' version '2.6.7'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
id 'war'
id 'no.nils.wsdl2java' version "0.12"
}
group = 'de.pietsch'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.apache.cxf:cxf-spring-boot-starter-jaxws:3.5.2'
implementation 'com.sun.xml.bind:jaxb-impl:3.0.2'
// wsdl2java('com.sun.xml.bind:jaxb-impl:2.3.3')
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
tasks.named('test') {
useJUnitPlatform()
}
//
//wsdl2java {
// wsdlDir = file("C:\\Users\\User\\IdeaProjects\\web-service-test\\src\\main\\resources")
// wsdlsToGenerate = [["$wsdlDir/EmployeeService.wsdl"]]
//// locale = Locale.GERMANY
//// cxfVersion = "2.5.1"
//// cxfPluginVersion = "2.4.0"
//}