summaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authoraf <jackoololoo@gmail.com>2016-06-10 14:07:17 +0300
committeraf <jackoololoo@gmail.com>2016-06-10 14:07:17 +0300
commitc7e2b2878d0128a1e74888dca98219182df78aa4 (patch)
treed564255e2df5ff9049b2259ec20b88b67157f328 /build.sbt
parent139f6bf9d709fc18a23530f2f84afa8a1f97b464 (diff)
downloadscala-c7e2b2878d0128a1e74888dca98219182df78aa4.tar.gz
scala-c7e2b2878d0128a1e74888dca98219182df78aa4.tar.bz2
scala-c7e2b2878d0128a1e74888dca98219182df78aa4.zip
Typo fix
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.sbt b/build.sbt
index da86f6274b..13bbd8be03 100644
--- a/build.sbt
+++ b/build.sbt
@@ -69,7 +69,7 @@ val scalaSwingDep = withoutScalaLang("org.scala-lang.modules" %% "scala-swing" %
val scalaXmlDep = withoutScalaLang("org.scala-lang.modules" %% "scala-xml" % versionNumber("scala-xml"))
val partestDep = withoutScalaLang("org.scala-lang.modules" %% "scala-partest" % versionNumber("partest"))
val junitDep = "junit" % "junit" % "4.11"
-val junitIntefaceDep = "com.novocode" % "junit-interface" % "0.11" % "test"
+val junitInterfaceDep = "com.novocode" % "junit-interface" % "0.11" % "test"
val asmDep = "org.scala-lang.modules" % "scala-asm" % versionProps("scala-asm.version")
val jlineDep = "jline" % "jline" % versionProps("jline.version")
val antDep = "org.apache.ant" % "ant" % "1.9.4"
@@ -576,7 +576,7 @@ lazy val junit = project.in(file("test") / "junit")
.settings(disablePublishing: _*)
.settings(
fork in Test := true,
- libraryDependencies ++= Seq(junitDep, junitIntefaceDep),
+ libraryDependencies ++= Seq(junitDep, junitInterfaceDep),
testOptions += Tests.Argument(TestFrameworks.JUnit, "-a", "-v"),
unmanagedSourceDirectories in Test := List(baseDirectory.value)
)