File tree Expand file tree Collapse file tree 2 files changed +17
-9
lines changed Expand file tree Collapse file tree 2 files changed +17
-9
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,10 @@ dependencies {
57
57
val jacksonVersion: String by project
58
58
api(platform(" com.fasterxml.jackson:jackson-bom:$jacksonVersion " ))
59
59
implementation(" com.fasterxml.jackson.core:jackson-databind" )
60
- implementation(" com.fasterxml.jackson.dataformat:jackson-dataformat-yaml" )
60
+ implementation(" com.fasterxml.jackson.dataformat:jackson-dataformat-yaml" ) {
61
+ val snakeYamlVersion: String by project
62
+ runtimeOnly(" org.yaml:snakeyaml:$snakeYamlVersion " )
63
+ }
61
64
implementation(" com.fasterxml.jackson.dataformat:jackson-dataformat-csv" )
62
65
implementation(" com.fasterxml.jackson.module:jackson-module-kotlin" )
63
66
implementation(" com.fasterxml.jackson.datatype:jackson-datatype-jsr310" )
@@ -86,7 +89,10 @@ dependencies {
86
89
implementation(platform(" io.netty:netty-bom:$nettyVersion " ))
87
90
}
88
91
val opencsvVersion: String by project
89
- implementation(" com.opencsv:opencsv:$opencsvVersion " )
92
+ implementation(" com.opencsv:opencsv:$opencsvVersion " ) {
93
+ val apacheCommonsTextVersion: String by project
94
+ runtimeOnly(" org.apache.commons:commons-text:$apacheCommonsTextVersion " )
95
+ }
90
96
91
97
val slf4jVersion: String by project
92
98
implementation(" org.slf4j:slf4j-api:$slf4jVersion " )
Original file line number Diff line number Diff line change 1
1
kotlin.code.style =official
2
2
3
- kotlinVersion =1.7.10
4
- dokkaVersion =1.7.10
3
+ kotlinVersion =1.7.20
4
+ dokkaVersion =1.7.20
5
5
dockerComposeVersion =0.16.9
6
- dependencyUpdateVersion =0.42 .0
6
+ dependencyUpdateVersion =0.43 .0
7
7
nexusPublishVersion =1.1.0
8
8
jsoupVersion =1.15.3
9
9
10
10
coroutinesVersion =1.6.4
11
11
avroVersion =1.11.1
12
12
snappyVersion =1.1.8.4
13
- jacksonVersion =2.13.4
13
+ jacksonVersion =2.13.4.20221013
14
14
jCommanderVersion =1.82
15
15
almworksVersion =1.1.2
16
16
minioVersion =8.4.5
17
17
guavaVersion =31.1-jre
18
18
opencsvVersion =5.7.0
19
19
okhttpVersion =4.10.0
20
- jedisVersion =4.2.3
20
+ jedisVersion =4.3.0
21
21
slf4jVersion =2.0.3
22
22
log4jVersion =2.19.0
23
- azureStorageVersion =12.19.1
24
- nettyVersion =4.1.82.Final
23
+ azureStorageVersion =12.20.0
24
+ nettyVersion =4.1.84.Final
25
+ snakeYamlVersion =1.32
26
+ apacheCommonsTextVersion =1.10.0
25
27
26
28
junitVersion =5.9.1
27
29
mockitoKotlinVersion =4.0.0
You can’t perform that action at this time.
0 commit comments