Skip to content

Commit

Permalink
Upgrade Dependencies (#146)
Browse files Browse the repository at this point in the history
Motivation:
We should upgrade our dependencies to the latest version to ensure
compatibility.

Modification:
Upgraded Netty to
[4.1.111.Final](https://mvnrepository.com/artifact/io.netty/netty-all/4.1.111.Final)
and JUnit to
[5.10.3](https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api/5.10.3).

Result:
Up-to-date dependencies
  • Loading branch information
hyperxpro authored Jul 5, 2024
1 parent de072a2 commit bb60371
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-buffer</artifactId>
<version>4.1.104.Final</version>
<version>4.1.111.Final</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
Expand All @@ -105,15 +105,15 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.10.0</version>
<version>5.10.3</version>
<scope>test</scope>
</dependency>

<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-engine -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.10.0</version>
<version>5.10.3</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit bb60371

Please sign in to comment.