I have the following in build.sbt :
libraryDependencies += "com.novocode" % "junit-interface" % "0.10" % "test" libraryDependencies += "junit" % "junit" % "4.11" % "test"
I noticed that junit-interface 0.10 is dependent on junit-dep 4.10 . This makes it impossible to compile tests that use assertNotEquals , which was introduced in junit 4.11 .
How to run JUnit 4.11 with SBT?
junit sbt
Alain o'dea
source share