Uplift of netty dependencies that are brought in by spring boot 92/139392/1
authoradheli.tavares <adheli.tavares@est.tech>
Wed, 13 Nov 2024 11:31:33 +0000 (11:31 +0000)
committeradheli.tavares <adheli.tavares@est.tech>
Wed, 13 Nov 2024 11:34:59 +0000 (11:34 +0000)
- they conflict with the ones in parent used in apex and drools

Issue-ID: POLICY-5073
Change-Id: I35f1fdd622b8dce14d32f5bf0351b4c90124e0ac
Signed-off-by: adheli.tavares <adheli.tavares@est.tech>
participant/pom.xml
pom.xml
runtime-acm/pom.xml

index fdbd154..cb251ff 100644 (file)
             <groupId>io.micrometer</groupId>
             <artifactId>micrometer-tracing-bridge-otel</artifactId>
         </dependency>
+
+        <!-- these netty dependencies need to be uplifted later in parent-->
+        <dependency>
+            <groupId>io.netty</groupId>
+            <artifactId>netty-all</artifactId>
+            <version>${version.netty}</version>
+        </dependency>
+        <dependency>
+            <groupId>io.netty</groupId>
+            <artifactId>netty-buffer</artifactId>
+            <version>${version.netty}</version>
+        </dependency>
+        <dependency>
+            <groupId>io.netty</groupId>
+            <artifactId>netty-codec</artifactId>
+            <version>${version.netty}</version>
+        </dependency>
+        <dependency>
+            <groupId>io.netty</groupId>
+            <artifactId>netty-codec-http2</artifactId>
+            <version>${version.netty}</version>
+        </dependency>
+        <dependency>
+            <groupId>io.netty</groupId>
+            <artifactId>netty-common</artifactId>
+            <version>${version.netty}</version>
+        </dependency>
+        <dependency>
+            <groupId>io.netty</groupId>
+            <artifactId>netty-handler</artifactId>
+            <version>${version.netty}</version>
+        </dependency>
+        <dependency>
+            <groupId>io.netty</groupId>
+            <artifactId>netty-handler-proxy</artifactId>
+            <version>${version.netty}</version>
+        </dependency>
     </dependencies>
 
     <build>
diff --git a/pom.xml b/pom.xml
index 02ec9bd..d3ad465 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -52,6 +52,7 @@
     <properties>
         <policy.common.version>3.0.1-SNAPSHOT</policy.common.version>
         <policy.models.version>4.0.1-SNAPSHOT</policy.models.version>
+        <version.netty>4.1.112.Final</version.netty>
     </properties>
     <modules>
         <module>common</module>
index 4b3c25d..ec94b09 100644 (file)
             <artifactId>spring-boot-test-autoconfigure</artifactId>
             <scope>test</scope>
         </dependency>
+
+        <!-- these netty dependencies need to be uplifted later in parent-->
+        <dependency>
+            <groupId>io.netty</groupId>
+            <artifactId>netty-all</artifactId>
+            <version>${version.netty}</version>
+        </dependency>
+        <dependency>
+            <groupId>io.netty</groupId>
+            <artifactId>netty-buffer</artifactId>
+            <version>${version.netty}</version>
+        </dependency>
+        <dependency>
+            <groupId>io.netty</groupId>
+            <artifactId>netty-codec</artifactId>
+            <version>${version.netty}</version>
+        </dependency>
+        <dependency>
+            <groupId>io.netty</groupId>
+            <artifactId>netty-codec-http2</artifactId>
+            <version>${version.netty}</version>
+        </dependency>
+        <dependency>
+            <groupId>io.netty</groupId>
+            <artifactId>netty-common</artifactId>
+            <version>${version.netty}</version>
+        </dependency>
+        <dependency>
+            <groupId>io.netty</groupId>
+            <artifactId>netty-handler</artifactId>
+            <version>${version.netty}</version>
+        </dependency>
+        <dependency>
+            <groupId>io.netty</groupId>
+            <artifactId>netty-handler-proxy</artifactId>
+            <version>${version.netty}</version>
+        </dependency>
     </dependencies>
 
     <build>