Repository: zeppelin
Updated Branches:
  refs/heads/branch-0.6 63ed3cc2a -> fbaa6c73a


[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 <lrese...@apache.org>

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

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

(cherry picked from commit df2e77de9631cbed14f91993f7fa4a840e871c92)
Signed-off-by: Mina Lee <mina...@apache.org>


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

Branch: refs/heads/branch-0.6
Commit: fbaa6c73a276e8c118496881da0cb5078e32331a
Parents: 63ed3cc
Author: Luciano Resende <lrese...@apache.org>
Authored: Fri Aug 26 12:49:19 2016 -0700
Committer: Mina Lee <mina...@apache.org>
Committed: Mon Sep 5 11:22:50 2016 +0200

----------------------------------------------------------------------
 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/fbaa6c73/flink/pom.xml
----------------------------------------------------------------------
diff --git a/flink/pom.xml b/flink/pom.xml
index 6e7f687..b8992c4 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/fbaa6c73/ignite/pom.xml
----------------------------------------------------------------------
diff --git a/ignite/pom.xml b/ignite/pom.xml
index 439985c..2595511 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>

Reply via email to