Skip to content

Commit

Permalink
chore: Update netty version (#1768)
Browse files Browse the repository at this point in the history
* replace version in pom files back to latest release

* update sdk version

* fix ion issue

* remove ion again

* fix netty version

* set aspectj version

* fix sdk version

* fix gradle version

* fix: Netty again
  • Loading branch information
sthulb authored Feb 13, 2025
1 parent 78a490c commit bf91b40
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions examples/powertools-examples-batch/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
<maven.compiler.target>1.8</maven.compiler.target>
<aws.sdk.v1.version>1.12.781</aws.sdk.v1.version>
<aws.sdk.version>2.30.19</aws.sdk.version>
<netty.version>4.2.0.RC3</netty.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -71,6 +72,22 @@
<artifactId>aws-java-sdk-core</artifactId>
<version>${aws.sdk.v1.version}</version>
</dependency>

<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http2</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-common</artifactId>
<version>${netty.version}</version>
</dependency>
</dependencies>

<build>
Expand Down

0 comments on commit bf91b40

Please sign in to comment.