diff options
author | 2024-11-13 11:31:33 +0000 | |
---|---|---|
committer | 2024-11-13 11:34:59 +0000 | |
commit | 0af6a6864821eb4d4541d2db79167a6527daa207 (patch) | |
tree | dfae20fcd9f84bbd88c7fc15a9dc20d8bd531f20 | |
parent | 1da7319d11c1c604e865e381801edb992d6c679a (diff) |
Uplift of netty dependencies that are brought in by spring boot
- 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>
-rw-r--r-- | participant/pom.xml | 37 | ||||
-rw-r--r-- | pom.xml | 1 | ||||
-rw-r--r-- | runtime-acm/pom.xml | 37 |
3 files changed, 75 insertions, 0 deletions
diff --git a/participant/pom.xml b/participant/pom.xml index fdbd154b8..cb251ff64 100644 --- a/participant/pom.xml +++ b/participant/pom.xml @@ -120,6 +120,43 @@ <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> @@ -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> diff --git a/runtime-acm/pom.xml b/runtime-acm/pom.xml index 4b3c25db0..ec94b091e 100644 --- a/runtime-acm/pom.xml +++ b/runtime-acm/pom.xml @@ -308,6 +308,43 @@ <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> |