diff options
Diffstat (limited to 'participant/pom.xml')
-rw-r--r-- | participant/pom.xml | 37 |
1 files changed, 37 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> |