You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@carbondata.apache.org by ja...@apache.org on 2018/03/30 07:07:11 UTC

carbondata git commit: [CARBONDATA-2292] Different module dependencies different version spark jar

Repository: carbondata
Updated Branches:
  refs/heads/master 9fba68454 -> 05eda0014


[CARBONDATA-2292] Different module dependencies different version spark jar

Fix the problem in presto integration module pom to keep one spark version

This closes #2111


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

Branch: refs/heads/master
Commit: 05eda00147ac72979c5c9f70af7fb6be5ec59345
Parents: 9fba684
Author: xubo245 <60...@qq.com>
Authored: Thu Mar 29 10:54:28 2018 +0800
Committer: Jacky Li <ja...@qq.com>
Committed: Fri Mar 30 15:06:30 2018 +0800

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


http://git-wip-us.apache.org/repos/asf/carbondata/blob/05eda001/integration/presto/pom.xml
----------------------------------------------------------------------
diff --git a/integration/presto/pom.xml b/integration/presto/pom.xml
index 747ae5e..c2d941a 100644
--- a/integration/presto/pom.xml
+++ b/integration/presto/pom.xml
@@ -434,15 +434,15 @@
     </dependency>
     <dependency>
       <groupId>org.apache.spark</groupId>
-      <artifactId>spark-network-common_2.11</artifactId>
+      <artifactId>spark-network-common_${scala.binary.version}</artifactId>
       <scope>test</scope>
-      <version>2.1.0</version>
+      <version>${spark.version}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.spark</groupId>
-      <artifactId>spark-core_2.11</artifactId>
+      <artifactId>spark-core_${scala.binary.version}</artifactId>
       <scope>test</scope>
-      <version>2.1.0</version>
+      <version>${spark.version}</version>
       <exclusions>
         <exclusion>
           <groupId>org.apache.hadoop</groupId>