Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
jenschude committed Dec 20, 2024
1 parent 0939d12 commit 4afa7d4
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 14 deletions.
10 changes: 6 additions & 4 deletions commercetools/commercetools-async-http-client/build.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@

dependencies {
api project(":rmf:rmf-java-base")
api "org.asynchttpclient:async-http-client:2.12.3"
api "org.asynchttpclient:async-http-client:2.12.4"
api commons.io version commons.io_version
api "io.netty:netty-codec-http:${netty.version}"
api "io.netty:netty-codec-socks:${netty.version}"
api "io.netty:netty-handler-proxy:${netty.version}"
api "io.netty:netty-codec:4.1.115.Final"
api "io.netty:netty-codec-http:4.1.115.Final"
api "io.netty:netty-codec-socks:4.1.115.Final"
api "io.netty:netty-handler-proxy:4.1.115.Final"
api "io.netty:netty-handler:4.1.115.Final"
implementation javax.validation
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ public class SolutionInfoTest {
public void version() {
String version = new AsyncHttpClientSolutionInfo().getVersion();

Assertions.assertThat(version).isEqualTo("2.12.3");
Assertions.assertThat(version).isEqualTo("2.12.4");
}
}
2 changes: 1 addition & 1 deletion commercetools/commercetools-okhttp-client4/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies {
api project(":rmf:rmf-java-base")
api "com.squareup.okhttp3:okhttp:4.12.0" version {
strictly '[4.0,5.0['
prefer "4.10.0"
prefer "4.12.0"
}
implementation "com.squareup.okio:okio:3.9.0"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ public class SolutionInfoTest {
public void version() {
String version = new OkHttpClientSolutionInfo().getVersion();

Assertions.assertThat(version).isEqualTo("3.14.9");
Assertions.assertThat(version).isEqualTo("4.12.0");
}
}
4 changes: 2 additions & 2 deletions commercetools/commercetools-reactornetty-client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
dependencies {
api project(":rmf:rmf-java-base")

api "io.projectreactor.netty:reactor-netty-http:1.1.19"
api "io.projectreactor.netty:reactor-netty-core:1.1.19"
api "io.projectreactor.netty:reactor-netty-http:1.2.1"
api "io.projectreactor.netty:reactor-netty-core:1.2.1"

implementation javax.validation
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ public class SolutionInfoTest {
public void version() {
String version = new NettyHttpClientSolutionInfo().getVersion();

Assertions.assertThat(version).isEqualTo("1.1.19");
Assertions.assertThat(version).isEqualTo("1.2.1");
}
}
2 changes: 2 additions & 0 deletions commercetools/commercetools-sdk-compat-v1/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ dependencies {
api project(':commercetools:commercetools-sdk-java-api')
api ctsdkv1.client version ctsdkv1.version
api ctsdkv1.models version ctsdkv1.version
api "io.netty:netty-codec:4.1.115.Final"
api "io.netty:netty-codec-http:4.1.115.Final"

jmhImplementation project(':commercetools:commercetools-async-http-client')
jmhImplementation project(':commercetools:commercetools-apachehttp-client')
Expand Down
5 changes: 1 addition & 4 deletions gradle-scripts/extensions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,13 @@ ext {
}
]

netty = [
version: '4.1.109.Final'
]
commons = [
text: 'org.apache.commons:commons-text:1.12.0',
lang3: 'org.apache.commons:commons-lang3:3.14.0',
io: 'commons-io:commons-io:2.16.1',
io_version: {
strictly '[2.8.0,)'
prefer '2.11.0'
prefer '2.16.1'
}
]

Expand Down

0 comments on commit 4afa7d4

Please sign in to comment.