You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@knox.apache.org by lm...@apache.org on 2016/11/10 14:58:34 UTC

knox git commit: KNOX-779 - Exclude older org.codehaus.jackson dependencies from build cycle

Repository: knox
Updated Branches:
  refs/heads/master 30298e1e4 -> c6aa4700a


KNOX-779 - Exclude older org.codehaus.jackson dependencies from build cycle

Project: http://git-wip-us.apache.org/repos/asf/knox/repo
Commit: http://git-wip-us.apache.org/repos/asf/knox/commit/c6aa4700
Tree: http://git-wip-us.apache.org/repos/asf/knox/tree/c6aa4700
Diff: http://git-wip-us.apache.org/repos/asf/knox/diff/c6aa4700

Branch: refs/heads/master
Commit: c6aa4700afaeba0d23c643e97feb3410047f5b23
Parents: 30298e1
Author: Larry McCay <lm...@hortonworks.com>
Authored: Thu Nov 10 09:56:23 2016 -0500
Committer: Larry McCay <lm...@hortonworks.com>
Committed: Thu Nov 10 09:58:24 2016 -0500

----------------------------------------------------------------------
 gateway-provider-rewrite/pom.xml |  6 +-----
 pom.xml                          | 15 ++++++++++-----
 2 files changed, 11 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/knox/blob/c6aa4700/gateway-provider-rewrite/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-provider-rewrite/pom.xml b/gateway-provider-rewrite/pom.xml
index 273ac5f..dc757d4 100644
--- a/gateway-provider-rewrite/pom.xml
+++ b/gateway-provider-rewrite/pom.xml
@@ -77,10 +77,6 @@
         </dependency>
         <dependency>
             <groupId>com.fasterxml.jackson.core</groupId>
-            <artifactId>jackson-core</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>com.fasterxml.jackson.core</groupId>
             <artifactId>jackson-databind</artifactId>
         </dependency>
 
@@ -157,4 +153,4 @@
 
     </dependencies>
 
-</project>
\ No newline at end of file
+</project>

http://git-wip-us.apache.org/repos/asf/knox/blob/c6aa4700/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index d6124b5..ffd665a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -943,11 +943,6 @@
 
             <dependency>
                 <groupId>com.fasterxml.jackson.core</groupId>
-                <artifactId>jackson-core</artifactId>
-                <version>2.2.2</version>
-            </dependency>
-            <dependency>
-                <groupId>com.fasterxml.jackson.core</groupId>
                 <artifactId>jackson-databind</artifactId>
                 <version>2.2.2</version>
             </dependency>
@@ -1194,6 +1189,16 @@
                 <artifactId>rest-assured</artifactId>
                 <version>1.8.1</version>
                 <scope>test</scope>
+                <exclusions>
+                    <exclusion>
+                        <groupId>org.codehaus.jackson</groupId>
+                        <artifactId>jackson-core-asl</artifactId>
+                    </exclusion>
+                    <exclusion>
+                        <groupId>org.codehaus.jackson</groupId>
+                        <artifactId>jackson-mapper-asl</artifactId>
+                    </exclusion>
+                </exclusions>
             </dependency>
 
             <dependency>