Skip to content

Commit aa07587

Browse files
committed
Fix Snyk test
1 parent c363769 commit aa07587

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,9 @@ dependencies {
8686
val azureStorageVersion: String by project
8787
implementation("com.azure:azure-storage-blob:$azureStorageVersion") {
8888
val nettyVersion: String by project
89-
implementation(platform("io.netty:netty-bom:$nettyVersion"))
89+
runtimeOnly(platform("io.netty:netty-bom:$nettyVersion"))
90+
val projectReactorNettyVersion: String by project
91+
runtimeOnly("io.projectreactor.netty:reactor-netty-http:$projectReactorNettyVersion")
9092
}
9193
val opencsvVersion: String by project
9294
implementation("com.opencsv:opencsv:$opencsvVersion") {

gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ azureStorageVersion=12.20.1
2424
nettyVersion=4.1.85.Final
2525
snakeYamlVersion=1.33
2626
apacheCommonsTextVersion=1.10.0
27+
projectReactorNettyVersion=1.0.24
2728

2829
junitVersion=5.9.1
2930
mockitoKotlinVersion=4.1.0

0 commit comments

Comments
 (0)