Skip to content

Commit 5733418

Browse files
committed
Signed-off-by: Brian Flores <[email protected]>
1 parent c12440c commit 5733418

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

ml-algorithms/build.gradle

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,18 @@ dependencies {
8888
}
8989
implementation('net.minidev:json-smart:2.5.2')
9090
implementation group: 'org.json', name: 'json', version: '20231013'
91-
implementation group: 'software.amazon.awssdk', name: 'netty-nio-client', version: "2.30.18"
91+
implementation (group: 'software.amazon.awssdk', name: 'netty-nio-client', version: "2.30.18") {
92+
exclude group: "io.netty"
93+
}
94+
implementation 'io.netty:netty-codec-http2:4.2.4.Final'
95+
implementation 'io.netty:netty-codec-http:4.2.4.Final'
96+
implementation 'io.netty:netty-common:4.2.4.Final'
97+
implementation 'io.netty:netty-buffer:4.2.4.Final'
98+
implementation 'io.netty:netty-transport:4.2.4.Final'
99+
implementation 'io.netty:netty-handler:4.2.4.Final'
100+
implementation 'io.netty:netty-resolver:4.2.4.Final'
101+
implementation 'io.netty:netty-codec:4.2.4.Final'
102+
implementation 'io.netty:netty-transport-classes-epoll:4.2.4.Final'
92103
testImplementation("com.fasterxml.jackson.core:jackson-annotations:${versions.jackson}")
93104
testImplementation("com.fasterxml.jackson.core:jackson-databind:${versions.jackson_databind}")
94105
testImplementation group: 'com.networknt' , name: 'json-schema-validator', version: '1.4.0'
@@ -103,6 +114,7 @@ configurations.all {
103114
resolutionStrategy.force 'org.apache.commons:commons-compress:1.26.0'
104115
resolutionStrategy.force 'software.amazon.awssdk:bom:2.30.18'
105116
resolutionStrategy.force 'commons-beanutils:commons-beanutils:1.11.0'
117+
resolutionStrategy.force 'org.apache.commons:commons-lang3:3.18.0'
106118
}
107119

108120
jacocoTestReport {

0 commit comments

Comments
 (0)