Skip to content

Commit

Permalink
Use same junit version for maven and sbt.
Browse files Browse the repository at this point in the history
This makes sbt happy now that I put the junit assembly
in the shared dependencies in the root pom.
  • Loading branch information
Marcelo Vanzin committed Aug 26, 2015
1 parent 5c107a5 commit 85fed20
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -753,7 +753,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
1 change: 0 additions & 1 deletion project/SparkBuild.scala
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,6 @@ object TestSettings {
testOptions in Test += Tests.Argument(TestFrameworks.JUnit, "-v", "-a"),
// Enable Junit testing.
libraryDependencies += "com.novocode" % "junit-interface" % "0.11" % "test",
libraryDependencies += "junit" % "junit" % "4.10" % "test",
// Only allow one test at a time, even across projects, since they run in the same JVM
parallelExecution in Test := false,
// Make sure the test temp directory exists.
Expand Down

0 comments on commit 85fed20

Please sign in to comment.