You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by zj...@apache.org on 2019/06/30 13:18:42 UTC

[zeppelin] branch master updated: [HOTFIX] Fix scala version mismatch in spark interpreter

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

zjffdu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/zeppelin.git


The following commit(s) were added to refs/heads/master by this push:
     new 6569c19  [HOTFIX] Fix scala version mismatch in spark interpreter
6569c19 is described below

commit 6569c19add5e10b9913ffb002de7a82a0c0a7b9f
Author: Jeff Zhang <zj...@apache.org>
AuthorDate: Sun Jun 30 21:18:31 2019 +0800

    [HOTFIX] Fix scala version mismatch in spark interpreter
---
 spark/pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/spark/pom.xml b/spark/pom.xml
index b83281d..713ded1 100644
--- a/spark/pom.xml
+++ b/spark/pom.xml
@@ -45,8 +45,8 @@
         <plugin.scala.version>2.15.2</plugin.scala.version>
         <!-- spark versions -->
         <spark.version>2.2.3</spark.version>
-        <spark.scala.version>2.11</spark.scala.version>
-        <spark.scala.binary.version>2.11.12</spark.scala.binary.version>
+        <spark.scala.version>2.11.12</spark.scala.version>
+        <spark.scala.binary.version>2.11</spark.scala.binary.version>
         <py4j.version>0.10.7</py4j.version>
 
         <spark.archive>spark-${spark.version}</spark.archive>
@@ -183,7 +183,7 @@
                 <activeByDefault>true</activeByDefault>
             </activation>
             <properties>
-                <spark.scala.version>2.11.8</spark.scala.version>
+                <spark.scala.version>2.11.12</spark.scala.version>
                 <spark.scala.binary.version>2.11</spark.scala.binary.version>
             </properties>
         </profile>