You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by bi...@apache.org on 2016/12/07 01:02:01 UTC

kylin git commit: KYLIN-2251: fix httpcore dependency conflict in JDBC Driver

Repository: kylin
Updated Branches:
  refs/heads/master a53eafaa3 -> ea13af4d8


KYLIN-2251: fix httpcore dependency conflict in JDBC Driver


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

Branch: refs/heads/master
Commit: ea13af4d8aa6a5b25fc328ee1adaf2b454eddea0
Parents: a53eafa
Author: Billy Liu <bi...@apache.org>
Authored: Wed Dec 7 09:01:52 2016 +0800
Committer: Billy Liu <bi...@apache.org>
Committed: Wed Dec 7 09:01:52 2016 +0800

----------------------------------------------------------------------
 jdbc/pom.xml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kylin/blob/ea13af4d/jdbc/pom.xml
----------------------------------------------------------------------
diff --git a/jdbc/pom.xml b/jdbc/pom.xml
index 4f42913..22d8eca 100644
--- a/jdbc/pom.xml
+++ b/jdbc/pom.xml
@@ -39,14 +39,14 @@
 
     <dependencies>
         <dependency>
-            <groupId>org.apache.calcite.avatica</groupId>
-            <artifactId>avatica</artifactId>
-        </dependency>
-        <dependency>
             <groupId>org.apache.httpcomponents</groupId>
             <artifactId>httpclient</artifactId>
         </dependency>
         <dependency>
+            <groupId>org.apache.calcite.avatica</groupId>
+            <artifactId>avatica</artifactId>
+        </dependency>
+        <dependency>
             <groupId>junit</groupId>
             <artifactId>junit</artifactId>
             <scope>test</scope>