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

xiangfu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git


The following commit(s) were added to refs/heads/master by this push:
     new 409d717  Exclude jsr311 dependency to make pinot-quickstart work under 
pinot-tools-pkg (#5241)
409d717 is described below

commit 409d717ad7a6bf4ad55730c2ad78c51a60d4e09d
Author: Xiang Fu <[email protected]>
AuthorDate: Sun Apr 12 13:18:35 2020 -0700

    Exclude jsr311 dependency to make pinot-quickstart work under 
pinot-tools-pkg (#5241)
---
 pinot-broker/pom.xml     | 14 ++++++++++++++
 pinot-controller/pom.xml | 14 ++++++++++++++
 pinot-server/pom.xml     |  4 ++++
 3 files changed, 32 insertions(+)

diff --git a/pinot-broker/pom.xml b/pinot-broker/pom.xml
index c81a754..d9e48e1 100644
--- a/pinot-broker/pom.xml
+++ b/pinot-broker/pom.xml
@@ -97,6 +97,20 @@
     <dependency>
       <groupId>io.swagger</groupId>
       <artifactId>swagger-jaxrs</artifactId>
+      <exclusions>
+        <exclusion>
+          <groupId>com.fasterxml.jackson.jaxrs</groupId>
+          <artifactId>jackson-jaxrs-json-provider</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>com.fasterxml.jackson.module</groupId>
+          <artifactId>jackson-module-jaxb-annotations</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>javax.ws.rs</groupId>
+          <artifactId>jsr311-api</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>io.swagger</groupId>
diff --git a/pinot-controller/pom.xml b/pinot-controller/pom.xml
index 8d2939c..aab77c1 100644
--- a/pinot-controller/pom.xml
+++ b/pinot-controller/pom.xml
@@ -139,6 +139,20 @@
     <dependency>
       <groupId>io.swagger</groupId>
       <artifactId>swagger-jaxrs</artifactId>
+      <exclusions>
+        <exclusion>
+          <groupId>com.fasterxml.jackson.jaxrs</groupId>
+          <artifactId>jackson-jaxrs-json-provider</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>com.fasterxml.jackson.module</groupId>
+          <artifactId>jackson-module-jaxb-annotations</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>javax.ws.rs</groupId>
+          <artifactId>jsr311-api</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>commons-logging</groupId>
diff --git a/pinot-server/pom.xml b/pinot-server/pom.xml
index 5da53de..87be2c2 100644
--- a/pinot-server/pom.xml
+++ b/pinot-server/pom.xml
@@ -208,6 +208,10 @@
           <groupId>com.fasterxml.jackson.module</groupId>
           <artifactId>jackson-module-jaxb-annotations</artifactId>
         </exclusion>
+        <exclusion>
+          <groupId>javax.ws.rs</groupId>
+          <artifactId>jsr311-api</artifactId>
+        </exclusion>
       </exclusions>
     </dependency>
     <dependency>


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to