-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
80 lines (70 loc) · 2.42 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
buildscript {
ext {
springBootVersion = '2.7.18'
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
plugins {
id 'java'
id 'eclipse'
id 'idea'
id 'org.springframework.boot' version '2.7.18'
id 'io.spring.dependency-management' version '1.1.4'
id 'no.nils.wsdl2java' version '0.12'
}
sourceCompatibility = 1.11
repositories {
mavenCentral()
flatDir {
dirs 'lib'
}
}
dependencies {
implementation('org.springframework.boot:spring-boot-starter-data-jpa')
implementation('org.springframework.boot:spring-boot-starter-web')
implementation('ch.qos.logback:logback-classic:1.2.13')
implementation('ch.qos.logback:logback-core:1.2.13')
implementation('org.yaml:snakeyaml:2.0')
implementation('org.springframework.boot:spring-boot-starter-actuator')
implementation('org.springframework.cloud:spring-cloud-starter-aws')
implementation('io.micrometer:micrometer-registry-cloudwatch:1.12.0')
implementation('org.apache.cxf:cxf-spring-boot-starter-jaxws:3.6.2')
implementation('org.apache.cxf:cxf-rt-features-logging:3.6.2')
implementation name: 'ojdbc8'
compileOnly "org.projectlombok:lombok:1.18.18"
annotationProcessor 'org.projectlombok:lombok:1.18.6'
testImplementation('org.springframework.boot:spring-boot-starter-test')
implementation 'com.amazonaws:aws-xray-recorder-sdk-spring:2.14.0'
implementation 'org.aspectj:aspectjrt:1.9.2'
wsdl2java 'com.sun.xml.bind:jaxb-xjc:2.3.2'
wsdl2java 'javax.xml.bind:jaxb-api:2.3.1'
wsdl2java 'javax.xml.ws:jaxws-api:2.3.1'
wsdl2java 'org.apache.cxf:cxf-rt-wsdl:3.6.2'
wsdl2java 'javax.jws:javax.jws-api:1.1'
implementation 'com.sun.xml.bind:jaxb-xjc:2.3.0.1'
implementation 'javax.xml.bind:jaxb-api:2.3.1'
implementation 'javax.xml.ws:jaxws-api:2.3.1'
implementation 'org.apache.cxf:cxf-rt-wsdl:3.2.7'
implementation 'javax.jws:javax.jws-api:1.1'
implementation 'javax.activation:activation:1.1.1'
}
wsdl2java{
wsdlsToGenerate = [
["$projectDir/src/main/resources/wsdl/LIBRAService.wsdl"]
]
wsdlDir = file("src/main/resources/wsdl")
cxfVersion = "3.3.0"
}
bootJar {
baseName = 'nolasa'
}
dependencyManagement {
imports {
mavenBom "org.springframework.cloud:spring-cloud-dependencies:Finchley.RELEASE"
}
}