You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by je...@apache.org on 2019/02/05 22:18:15 UTC

[incubator-pinot] branch master updated: Fixing jackson dependency issues with swagger (#3793)

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

jenniferdai 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 866dfc7  Fixing jackson dependency issues with swagger (#3793)
866dfc7 is described below

commit 866dfc708e30445ba94c7fcf2c1036ab02a0ef82
Author: Jennifer Dai <je...@users.noreply.github.com>
AuthorDate: Tue Feb 5 14:18:10 2019 -0800

    Fixing jackson dependency issues with swagger (#3793)
    
    * Swagger UI pulls in an old version of Jackson, failing our current build.
    * Checked snapshot build to make sure dependencies work
---
 pinot-server/pom.xml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/pinot-server/pom.xml b/pinot-server/pom.xml
index 2e845ff..0a547ed 100644
--- a/pinot-server/pom.xml
+++ b/pinot-server/pom.xml
@@ -216,6 +216,12 @@
     <dependency>
         <groupId>org.webjars</groupId>
         <artifactId>swagger-ui</artifactId>
+      <exclusions>
+      <exclusion>
+        <groupId>com.fasterxml.jackson.jaxrs</groupId>
+        <artifactId>jackson-jaxrs-json-provider</artifactId>
+      </exclusion>
+      </exclusions>
     </dependency>
     <!-- test -->
     <dependency>


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