Skip to content

Commit

Permalink
Fixes piranhacloud#3736 - Move Netty dependency version into its Pira…
Browse files Browse the repository at this point in the history
…nha HTTP module
  • Loading branch information
mnriem committed May 27, 2024
1 parent 58c3fc4 commit cba993b
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 62 deletions.
5 changes: 4 additions & 1 deletion COMPONENTS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Components

| Name | Version |
|-----------------------|---------------|
| Eclipse Grizzly | 4.0.2 |
| Eclipse Grizzly NPN | 2.0.0 |
| RedHat Weld | 5.1.2.Final |
| Netty | 4.1.108.Final |
| RedHat Undertow | 2.3.12.Final |
| RedHat Weld | 5.1.2.Final |
8 changes: 7 additions & 1 deletion http/netty/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
<packaging>jar</packaging>

<name>Piranha - HTTP - Netty Integration</name>

<properties>
<netty.version>4.1.108.Final</netty.version>
</properties>
<dependencies>
<!-- compile -->
<dependency>
Expand All @@ -25,21 +27,25 @@
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-buffer</artifactId>
<version>${netty.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http</artifactId>
<version>${netty.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http2</artifactId>
<version>${netty.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport</artifactId>
<version>${netty.version}</version>
<scope>compile</scope>
</dependency>
<!-- test -->
Expand Down
35 changes: 1 addition & 34 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@
<maven-plugin-api.version>4.0.0-alpha-13</maven-plugin-api.version>
<maven-plugin-tools-annotations.version>3.11.0</maven-plugin-tools-annotations.version>
<microprofile-jwt-auth.version>2.0.2</microprofile-jwt-auth.version>
<netty.version>4.1.108.Final</netty.version>
<omnibeans.version>0.3</omnibeans.version>
<omniservices.version>0.4</omniservices.version>
<omniutils.version>0.13</omniutils.version>
Expand Down Expand Up @@ -390,39 +389,7 @@
<artifactId>hazelcast</artifactId>
<version>${hazelcast.version}</version>
</dependency>

<!-- Netty -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-buffer</artifactId>
<version>${netty.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>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport</artifactId>
<version>${netty.version}</version>
</dependency>


<!-- OmniFaces Beans -->
<dependency>
<groupId>ee.omnifish</groupId>
Expand Down
26 changes: 0 additions & 26 deletions test/debug/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -526,32 +526,6 @@
<artifactId>hazelcast</artifactId>
</dependency>

<!-- Netty -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-buffer</artifactId>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http</artifactId>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http2</artifactId>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-common</artifactId>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport</artifactId>
</dependency>

<!-- OmniFaces Config -->
<dependency>
<groupId>org.omnifaces</groupId>
Expand Down

0 comments on commit cba993b

Please sign in to comment.