You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by fe...@apache.org on 2016/09/01 07:21:06 UTC

zeppelin git commit: [ZEPPELIN-1379] Flink interpreter is missing scala libraries

Repository: zeppelin
Updated Branches:
  refs/heads/master 7e2a1b5d4 -> df2e77de9


[ZEPPELIN-1379] Flink interpreter is missing scala libraries

### What is this PR for?
On Flink interpreter, remove provided scope from scala libraries to enable copying them to interpreter location.

### What type of PR is it?
[Bug Fix]

### What is the Jira issue?
[ZEPPELIN-1379](https://issues.apache.org/jira/browse/ZEPPELIN-1379)

Author: Luciano Resende <lr...@apache.org>

Closes #1370 from lresende/flink-dependencies and squashes the following commits:

8e2ea20 [Luciano Resende] [ZEPPELIN-1379] Flink interpreter is missing scala libraries


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

Branch: refs/heads/master
Commit: df2e77de9631cbed14f91993f7fa4a840e871c92
Parents: 7e2a1b5
Author: Luciano Resende <lr...@apache.org>
Authored: Fri Aug 26 12:49:19 2016 -0700
Committer: Felix Cheung <fe...@apache.org>
Committed: Thu Sep 1 00:21:01 2016 -0700

----------------------------------------------------------------------
 flink/pom.xml  | 7 ++-----
 ignite/pom.xml | 2 +-
 2 files changed, 3 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/df2e77de/flink/pom.xml
----------------------------------------------------------------------
diff --git a/flink/pom.xml b/flink/pom.xml
index f4c12d5..98713e6 100644
--- a/flink/pom.xml
+++ b/flink/pom.xml
@@ -120,21 +120,18 @@
       <groupId>org.scala-lang</groupId>
       <artifactId>scala-library</artifactId>
       <version>${scala.version}</version>
-      <scope>provided</scope>
     </dependency>
 
     <dependency>
       <groupId>org.scala-lang</groupId>
       <artifactId>scala-compiler</artifactId>
       <version>${scala.version}</version>
-      <scope>provided</scope>
     </dependency>
 
     <dependency>
       <groupId>org.scala-lang</groupId>
       <artifactId>scala-reflect</artifactId>
       <version>${scala.version}</version>
-      <scope>provided</scope>
     </dependency>
 
     <dependency>
@@ -319,7 +316,6 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-dependency-plugin</artifactId>
-        <version>2.4</version>
         <executions>
           <execution>
             <id>copy-dependencies</id>
@@ -339,10 +335,11 @@
       </plugin>
 
       <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-dependency-plugin</artifactId>
-        <version>2.8</version>
         <executions>
           <execution>
+            <id>copy-artifact</id>
             <phase>package</phase>
             <goals>
               <goal>copy</goal>

http://git-wip-us.apache.org/repos/asf/zeppelin/blob/df2e77de/ignite/pom.xml
----------------------------------------------------------------------
diff --git a/ignite/pom.xml b/ignite/pom.xml
index 465dbc6..d70c488 100644
--- a/ignite/pom.xml
+++ b/ignite/pom.xml
@@ -116,8 +116,8 @@
       </plugin>
 
       <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-dependency-plugin</artifactId>
-        <version>2.8</version>
         <executions>
           <execution>
             <id>copy-dependencies</id>