aboutsummaryrefslogtreecommitdiff
path: root/mllib/pom.xml
diff options
context:
space:
mode:
authorMarcelo Vanzin <vanzin@cloudera.com>2014-06-05 13:13:33 -0700
committerPatrick Wendell <pwendell@gmail.com>2014-06-05 13:13:33 -0700
commit668cb1defe735add91f4a5b7b8ebe7cfd5640b25 (patch)
tree9654d8ada4b6b6f29485e329ad4caf03527a66b4 /mllib/pom.xml
parent5473aa7c02916022430493637b1492554b48c30b (diff)
downloadspark-668cb1defe735add91f4a5b7b8ebe7cfd5640b25.tar.gz
spark-668cb1defe735add91f4a5b7b8ebe7cfd5640b25.tar.bz2
spark-668cb1defe735add91f4a5b7b8ebe7cfd5640b25.zip
Remove compile-scoped junit dependency.
This avoids having junit classes showing up in the assembly jar. I verified that only test classes in the jtransforms package use junit. Author: Marcelo Vanzin <vanzin@cloudera.com> Closes #794 from vanzin/junit-dep-exclusion and squashes the following commits: 274e1c2 [Marcelo Vanzin] Remove junit from assembly in sbt build also. ad950be [Marcelo Vanzin] Remove compile-scoped junit dependency.
Diffstat (limited to 'mllib/pom.xml')
-rw-r--r--mllib/pom.xml8
1 files changed, 8 insertions, 0 deletions
diff --git a/mllib/pom.xml b/mllib/pom.xml
index 4aae2026dc..878cb83dbf 100644
--- a/mllib/pom.xml
+++ b/mllib/pom.xml
@@ -50,6 +50,14 @@
<groupId>org.scalanlp</groupId>
<artifactId>breeze_${scala.binary.version}</artifactId>
<version>0.7</version>
+ <exclusions>
+ <!-- This is included as a compile-scoped dependency by jtransforms, which is
+ a dependency of breeze. -->
+ <exclusion>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>org.scalatest</groupId>