Skip to content

Commit 1a73046

Browse files
rxingatorsmile
authored andcommitted
[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 <[email protected]> Closes #17574 from rxin/SPARK-20264. (cherry picked from commit 7bfa05e) Signed-off-by: Xiao Li <[email protected]>
1 parent 43a7fca commit 1a73046

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

sql/core/pom.xml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,10 @@
103103
<artifactId>jackson-databind</artifactId>
104104
<version>${fasterxml.jackson.version}</version>
105105
</dependency>
106+
<dependency>
107+
<groupId>org.apache.xbean</groupId>
108+
<artifactId>xbean-asm5-shaded</artifactId>
109+
</dependency>
106110
<dependency>
107111
<groupId>org.scalacheck</groupId>
108112
<artifactId>scalacheck_${scala.binary.version}</artifactId>
@@ -134,11 +138,6 @@
134138
<artifactId>mockito-core</artifactId>
135139
<scope>test</scope>
136140
</dependency>
137-
<dependency>
138-
<groupId>org.apache.xbean</groupId>
139-
<artifactId>xbean-asm5-shaded</artifactId>
140-
<scope>test</scope>
141-
</dependency>
142141
</dependencies>
143142
<build>
144143
<outputDirectory>target/scala-${scala.binary.version}/classes</outputDirectory>

0 commit comments

Comments
 (0)