You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by li...@apache.org on 2017/04/10 03:32:12 UTC

spark git commit: [SPARK-20264][SQL] asm should be non-test dependency in sql/core

Repository: spark
Updated Branches:
  refs/heads/master 7a63f5e82 -> 7bfa05e0a


[SPARK-20264][SQL] asm should be non-test dependency in sql/core

## What changes were proposed in this pull request?
sq/core module currently declares asm as a test scope dependency. Transitively it should actually be a normal dependency since the actual core module defines it. This occasionally confuses IntelliJ.

## How was this patch tested?
N/A - This is a build change.

Author: Reynold Xin <rx...@databricks.com>

Closes #17574 from rxin/SPARK-20264.


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

Branch: refs/heads/master
Commit: 7bfa05e0a5e6860a942e1ce47e7890d665acdfe3
Parents: 7a63f5e
Author: Reynold Xin <rx...@databricks.com>
Authored: Sun Apr 9 20:32:07 2017 -0700
Committer: Xiao Li <ga...@gmail.com>
Committed: Sun Apr 9 20:32:07 2017 -0700

----------------------------------------------------------------------
 sql/core/pom.xml | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/7bfa05e0/sql/core/pom.xml
----------------------------------------------------------------------
diff --git a/sql/core/pom.xml b/sql/core/pom.xml
index 69d797b..b203f31 100644
--- a/sql/core/pom.xml
+++ b/sql/core/pom.xml
@@ -104,6 +104,10 @@
       <version>${fasterxml.jackson.version}</version>
     </dependency>
     <dependency>
+      <groupId>org.apache.xbean</groupId>
+      <artifactId>xbean-asm5-shaded</artifactId>
+    </dependency>
+    <dependency>
       <groupId>org.scalacheck</groupId>
       <artifactId>scalacheck_${scala.binary.version}</artifactId>
       <scope>test</scope>
@@ -147,11 +151,6 @@
       <artifactId>mockito-core</artifactId>
       <scope>test</scope>
     </dependency>
-    <dependency>
-      <groupId>org.apache.xbean</groupId>
-      <artifactId>xbean-asm5-shaded</artifactId>
-      <scope>test</scope>
-    </dependency>
   </dependencies>
   <build>
     <outputDirectory>target/scala-${scala.binary.version}/classes</outputDirectory>


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@spark.apache.org
For additional commands, e-mail: commits-help@spark.apache.org