You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by jl...@apache.org on 2023/04/06 18:20:53 UTC

[pinot] branch jia_netty_exclusion updated: Exclude netty from azure related packages as it's breaking our build. (#10569)

This is an automated email from the ASF dual-hosted git repository.

jlli pushed a commit to branch jia_netty_exclusion
in repository https://gitbox.apache.org/repos/asf/pinot.git


The following commit(s) were added to refs/heads/jia_netty_exclusion by this push:
     new 7bc3050bb9 Exclude netty from azure related packages as it's breaking our build. (#10569)
7bc3050bb9 is described below

commit 7bc3050bb9a13648523da72f863b92b0f30498fb
Author: Jia Guo <ji...@linkedin.com>
AuthorDate: Thu Apr 6 11:20:47 2023 -0700

    Exclude netty from azure related packages as it's breaking our build. (#10569)
---
 pinot-plugins/pinot-file-system/pinot-adls/pom.xml | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/pinot-plugins/pinot-file-system/pinot-adls/pom.xml b/pinot-plugins/pinot-file-system/pinot-adls/pom.xml
index 5addbd32e6..ceafbea8e9 100644
--- a/pinot-plugins/pinot-file-system/pinot-adls/pom.xml
+++ b/pinot-plugins/pinot-file-system/pinot-adls/pom.xml
@@ -58,6 +58,10 @@
           <groupId>com.fasterxml.woodstox</groupId>
           <artifactId>woodstox-core</artifactId>
         </exclusion>
+        <exclusion>
+          <groupId>io.netty</groupId>
+          <artifactId>*</artifactId>
+        </exclusion>
       </exclusions>
     </dependency>
     <dependency>
@@ -72,16 +76,34 @@
         <groupId>com.azure</groupId>
         <artifactId>azure-core-http-netty</artifactId>
         <version>1.13.1</version>
+        <exclusions>
+          <exclusion>
+            <groupId>io.netty</groupId>
+            <artifactId>*</artifactId>
+          </exclusion>
+        </exclusions>
       </dependency>
       <dependency>
         <groupId>com.azure</groupId>
         <artifactId>azure-core</artifactId>
         <version>1.37.0</version>
+        <exclusions>
+          <exclusion>
+            <groupId>io.netty</groupId>
+            <artifactId>*</artifactId>
+          </exclusion>
+        </exclusions>
       </dependency>
       <dependency>
         <groupId>io.projectreactor</groupId>
         <artifactId>reactor-core</artifactId>
         <version>3.4.27</version>
+        <exclusions>
+          <exclusion>
+            <groupId>io.netty</groupId>
+            <artifactId>*</artifactId>
+          </exclusion>
+        </exclusions>
       </dependency>
       <dependency>
         <groupId>com.fasterxml.woodstox</groupId>


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org