Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion dhis-2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@

<!-- Apache Artemis -->
<artemis-jakarta.version>2.42.0</artemis-jakarta.version>
<netty-all.version>4.2.1.Final</netty-all.version>
<netty-all.version>4.2.13.Final</netty-all.version>
<classgraph.version>4.8.184</classgraph.version>

<!-- SMS/SMPP -->
Expand Down Expand Up @@ -1471,6 +1471,17 @@
<artifactId>netty-all</artifactId>
<version>${netty-all.version}</version>
</dependency>
<!-- Align every io.netty:* artifact (incl. modules Artemis pulls transitively,
e.g. netty-codec-haproxy / netty-transport-classes-*) to the same version as
netty-all. Without this, the netty-all uber jar mixes with older individual
netty modules on the classpath, causing AbstractMethodError at runtime. -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-bom</artifactId>
<version>${netty-all.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>io.github.classgraph</groupId>
<artifactId>classgraph</artifactId>
Expand Down
Loading