File tree Expand file tree Collapse file tree 16 files changed +39
-16
lines changed
api-catalog-package/src/main/resources
apiml-common-lib-package/src/main/resources
apiml-sample-extension-package/src/main/resources
caching-service-package/src/main/resources
discovery-package/src/main/resources
gateway-package/src/main/resources
metrics-service-package/src/main/resources
onboarding-enabler-java-sample-app Expand file tree Collapse file tree 16 files changed +39
-16
lines changed Original file line number Diff line number Diff line change 17
17
branch : " {{build.branch}}"
18
18
number : " {{build.number}}"
19
19
commitHash : " {{build.commitHash}}"
20
- timestamp : " {{build.timestamp}}"
20
+ timestamp : {{build.timestamp}}
21
21
commands :
22
22
start : bin/start.sh
23
23
validate : bin/validate.sh
Original file line number Diff line number Diff line change 15
15
branch : " {{build.branch}}"
16
16
number : " {{build.number}}"
17
17
commitHash : " {{build.commitHash}}"
18
- timestamp : " {{build.timestamp}}"
18
+ timestamp : {{build.timestamp}}
19
19
schemas :
20
20
configs : " apiml-common-lib-schema.json"
Original file line number Diff line number Diff line change @@ -3,7 +3,10 @@ dependencies {
3
3
compileOnly libraries. spring_boot_starter_web
4
4
5
5
implementation libraries. apache_commons_lang3
6
- implementation libraries. jackson_dataformat_yaml
6
+ implementation(libraries. jackson_dataformat_yaml) {
7
+ exclude group : " org.yaml" , module : " snakeyaml"
8
+ }
9
+ implementation libraries. snakeyaml
7
10
8
11
compileOnly libraries. lombok
9
12
annotationProcessor libraries. lombok
Original file line number Diff line number Diff line change 15
15
branch : " {{build.branch}}"
16
16
number : " {{build.number}}"
17
17
commitHash : " {{build.commitHash}}"
18
- timestamp : " {{build.timestamp}}"
18
+ timestamp : {{build.timestamp}}
19
19
# The following block contains all the extensions directory path
20
20
# (or file path) that will be included in the API ML
21
21
gatewaySharedLibs :
Original file line number Diff line number Diff line change 1
1
dependencies {
2
- implementation libraries. spring_boot_starter_web
2
+ implementation(libraries. spring_boot_starter_web) {
3
+ exclude group : " org.yaml" , module : " snakeyaml"
4
+ }
5
+ implementation libraries. snakeyaml
3
6
implementation libraries. zowe_attls
4
7
5
8
implementation libraries. spring_aop
Original file line number Diff line number Diff line change 17
17
branch : " {{build.branch}}"
18
18
number : " {{build.number}}"
19
19
commitHash : " {{build.commitHash}}"
20
- timestamp : " {{build.timestamp}}"
20
+ timestamp : {{build.timestamp}}
21
21
commands :
22
22
start : bin/start.sh
23
23
validate : bin/validate.sh
Original file line number Diff line number Diff line change @@ -28,10 +28,15 @@ dependencies {
28
28
compileOnly libraries. lombok
29
29
annotationProcessor libraries. lombok
30
30
31
- implementation(libraries. spring_boot_starter_cache)
32
31
implementation(libraries. eh_cache)
33
-
34
- testImplementation(libraries. spring_boot_starter_cache)
32
+ implementation(libraries. spring_boot_starter_cache){
33
+ exclude group : " org.yaml" , module : " snakeyaml"
34
+ }
35
+ testImplementation(libraries. spring_boot_starter_cache) {
36
+ exclude group : " org.yaml" , module : " snakeyaml"
37
+ }
38
+ implementation libraries. snakeyaml
39
+ testImplementation libraries. snakeyaml
35
40
testImplementation(libraries. spring_boot_starter_test)
36
41
testImplementation libraries. json_smart
37
42
testImplementation(libraries. eh_cache)
Original file line number Diff line number Diff line change 17
17
branch : " {{build.branch}}"
18
18
number : " {{build.number}}"
19
19
commitHash : " {{build.commitHash}}"
20
- timestamp : " {{build.timestamp}}"
20
+ timestamp : {{build.timestamp}}
21
21
commands :
22
22
start : bin/start.sh
23
23
validate : bin/validate.sh
Original file line number Diff line number Diff line change @@ -79,7 +79,10 @@ dependencies {
79
79
implementation libraries. gson
80
80
implementation libraries. jackson_annotations
81
81
implementation libraries. jackson_core
82
- implementation libraries. jackson_dataformat_yaml
82
+ implementation(libraries. jackson_dataformat_yaml) {
83
+ exclude group : " org.yaml" , module : " snakeyaml"
84
+ }
85
+ implementation libraries. snakeyaml
83
86
implementation libraries. jackson_databind
84
87
implementation libraries. jetty_client
85
88
implementation libraries. jetty_http
Original file line number Diff line number Diff line change 17
17
branch : " {{build.branch}}"
18
18
number : " {{build.number}}"
19
19
commitHash : " {{build.commitHash}}"
20
- timestamp : " {{build.timestamp}}"
20
+ timestamp : {{build.timestamp}}
21
21
commands :
22
22
start : bin/start.sh
23
23
validate : bin/validate.sh
You can’t perform that action at this time.
0 commit comments