aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorVlad Rozov <vrozov@apache.org>2017-11-07 17:07:38 -0800
committerParth Chandra <parthc@apache.org>2017-11-22 10:33:19 -0800
commit23e65657db964522de5eec69283dc697071a225c (patch)
treeac94d266b4d8d3677f828287e8e1f05f3df0eb29 /pom.xml
parentb1f0739fdee5fc1d2b1c43fa052d1fc92fd33af0 (diff)
DRILL-5917: Ban org.json:json library in Drill
This closes #1031
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml17
1 files changed, 16 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index 31f0f6955..b5e4fffb6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -361,6 +361,7 @@
<exclude>org.mortbay.jetty:servlet-api-2.5</exclude>
<exclude>log4j:log4j</exclude>
<exclude>jdk.tools:jdk.tools</exclude>
+ <exclude>org.json:json</exclude>
</excludes>
</bannedDependencies>
</rules>
@@ -982,6 +983,10 @@
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
</exclusion>
+ <exclusion>
+ <groupId>org.json</groupId>
+ <artifactId>json</artifactId>
+ </exclusion>
</exclusions>
</dependency>
<dependency>
@@ -1013,6 +1018,10 @@
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
</exclusion>
+ <exclusion>
+ <groupId>org.json</groupId>
+ <artifactId>json</artifactId>
+ </exclusion>
</exclusions>
</dependency>
<dependency>
@@ -1042,6 +1051,12 @@
<scope>runtime</scope>
<optional>true</optional>
</dependency>
+ <dependency>
+ <groupId>com.tdunning</groupId>
+ <artifactId>json</artifactId>
+ <version>1.8</version>
+ <scope>runtime</scope>
+ </dependency>
</dependencies>
</dependencyManagement>
@@ -1776,7 +1791,7 @@
<rat.excludeSubprojects>true</rat.excludeSubprojects>
<hive.version>1.2.0-mapr-1707</hive.version>
<hbase.version>1.1.1-mapr-1602-m7-5.2.0</hbase.version>
- <hadoop.version>2.7.0-mapr-1607</hadoop.version>
+ <hadoop.version>2.7.0-mapr-1707</hadoop.version>
</properties>
<dependencyManagement>
<dependencies>