You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by bi...@apache.org on 2017/02/10 06:06:27 UTC

kylin git commit: KYLIN-2428 fix spark dep in IT

Repository: kylin
Updated Branches:
  refs/heads/KYLIN-2428 8030a2727 -> 5f4c02f89


KYLIN-2428 fix spark dep in IT


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

Branch: refs/heads/KYLIN-2428
Commit: 5f4c02f8944a53352fce764ee85e44bd148db2fd
Parents: 8030a27
Author: Billy Liu <bi...@apache.org>
Authored: Fri Feb 10 14:06:16 2017 +0800
Committer: Billy Liu <bi...@apache.org>
Committed: Fri Feb 10 14:06:16 2017 +0800

----------------------------------------------------------------------
 engine-spark/pom.xml | 39 ---------------------------------------
 kylin-it/pom.xml     |  5 +++++
 2 files changed, 5 insertions(+), 39 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kylin/blob/5f4c02f8/engine-spark/pom.xml
----------------------------------------------------------------------
diff --git a/engine-spark/pom.xml b/engine-spark/pom.xml
index fe6d998..799ea43 100644
--- a/engine-spark/pom.xml
+++ b/engine-spark/pom.xml
@@ -117,45 +117,6 @@
             <artifactId>maven-model</artifactId>
             <scope>test</scope>
         </dependency>
-        <dependency>
-            <groupId>com.google.guava</groupId>
-            <artifactId>guava</artifactId>
-        </dependency>
-
-
     </dependencies>
 
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-shade-plugin</artifactId>
-                <executions>
-                    <execution>
-                        <phase>package</phase>
-                        <goals>
-                            <goal>shade</goal>
-                        </goals>
-                        <configuration>
-                            <minimizeJar>false</minimizeJar>
-                            <shadedArtifactAttached>true</shadedArtifactAttached>
-                            <shadedClassifierName>job</shadedClassifierName>
-                            <filters>
-                                <filter>
-                                    <artifact>*:*</artifact>
-                                    <excludes>
-                                        <exclude>META-INF/*.SF</exclude>
-                                        <exclude>META-INF/*.DSA</exclude>
-                                        <exclude>META-INF/*.RSA</exclude>
-                                    </excludes>
-                                </filter>
-                            </filters>
-                        </configuration>
-                    </execution>
-                </executions>
-            </plugin>
-        </plugins>
-    </build>
-
-
 </project>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/kylin/blob/5f4c02f8/kylin-it/pom.xml
----------------------------------------------------------------------
diff --git a/kylin-it/pom.xml b/kylin-it/pom.xml
index 91104ba..e62eb76 100644
--- a/kylin-it/pom.xml
+++ b/kylin-it/pom.xml
@@ -258,6 +258,11 @@
             <artifactId>spark-hive_2.10</artifactId>
             <scope>provided</scope>
         </dependency>
+        <dependency>
+            <groupId>com.google.guava</groupId>
+            <artifactId>guava</artifactId>
+            <scope>provided</scope>
+        </dependency>
     </dependencies>