You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by sh...@apache.org on 2018/09/21 03:26:07 UTC

[kylin] branch master updated: KYLIN-3567 Change scala dependency scope to provided

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 82e1c01  KYLIN-3567 Change scala dependency scope to provided
82e1c01 is described below

commit 82e1c01af3dee09c0c6a417210ff5dfa47571575
Author: chao long <wa...@qq.com>
AuthorDate: Tue Sep 18 18:31:12 2018 +0800

    KYLIN-3567 Change scala dependency scope to provided
---
 engine-spark/pom.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/engine-spark/pom.xml b/engine-spark/pom.xml
index 9516b19..26a3ad7 100644
--- a/engine-spark/pom.xml
+++ b/engine-spark/pom.xml
@@ -104,16 +104,19 @@
         <dependency>
             <groupId>org.scala-lang</groupId>
             <artifactId>scala-library</artifactId>
+            <scope>provided</scope>
         </dependency>
 
         <dependency>
             <groupId>org.scala-lang</groupId>
             <artifactId>scala-compiler</artifactId>
+            <scope>provided</scope>
         </dependency>
 
         <dependency>
             <groupId>org.scala-lang</groupId>
             <artifactId>scala-reflect</artifactId>
+            <scope>provided</scope>
         </dependency>
     </dependencies>