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 584e28f [ZEPPELIN-4152]. Use spark 2.2 as the default profile
584e28f is described below
commit 584e28f72db275bc81a7314213e5367decd92504
Author: Jeff Zhang <[email protected]>
AuthorDate: Mon May 13 10:06:31 2019 +0800
[ZEPPELIN-4152]. Use spark 2.2 as the default profile
### What is this PR for?
Trivial PR to use spark 2.2 as the default profile so that the default
build command can pass
```
mvn clean package -DskipTests
```
### What type of PR is it?
[ Improvement ]
### Todos
* [ ] - Task
### What is the Jira issue?
* https://issues.apache.org/jira/browse/ZEPPELIN-4152
### How should this be tested?
* CI pass
### Screenshots (if appropriate)
### Questions:
* Does the licenses files need update? No
* Is there breaking changes for older versions? No
* Does this needs documentation? No
Author: Jeff Zhang <[email protected]>
Closes #3360 from zjffdu/ZEPPELIN-4152 and squashes the following commits:
629ae1afd [Jeff Zhang] [ZEPPELIN-4152]. Use spark 2.2 as the default profile
---
spark/pom.xml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/spark/pom.xml b/spark/pom.xml
index 0d88246..9b703ca 100644
--- a/spark/pom.xml
+++ b/spark/pom.xml
@@ -196,9 +196,6 @@
<protobuf.version>2.5.0</protobuf.version>
<py4j.version>0.10.7</py4j.version>
</properties>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
</profile>
<profile>
@@ -212,6 +209,9 @@
<profile>
<id>spark-2.2</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ </activation>
<properties>
<spark.version>2.2.1</spark.version>
<py4j.version>0.10.4</py4j.version>