aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorJakob Odersky <jakob@inpher.io>2019-03-25 21:48:39 -0400
committerJakob Odersky <jakob@inpher.io>2019-03-25 21:54:06 -0400
commit8a71d804a41ffbd80f881fae24c42637e246afc2 (patch)
treebb910231e0e25dde0ca7befbc285e9706459f990 /build.sbt
parentfa4970f89a5f0ad701a01e88bc53fc3377e26e50 (diff)
downloadcommando-8a71d804a41ffbd80f881fae24c42637e246afc2.tar.gz
commando-8a71d804a41ffbd80f881fae24c42637e246afc2.tar.bz2
commando-8a71d804a41ffbd80f881fae24c42637e246afc2.zip
Update plugins and build
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt6
1 files changed, 3 insertions, 3 deletions
diff --git a/build.sbt b/build.sbt
index 758fb7f..152be51 100644
--- a/build.sbt
+++ b/build.sbt
@@ -11,16 +11,16 @@ lazy val commando = crossProject(JSPlatform, JVMPlatform, NativePlatform)
"-feature"
),
libraryDependencies ++= Seq(
- "com.lihaoyi" %%% "utest" % "0.6.3" % "test"
+ "com.lihaoyi" %%% "utest" % "0.6.6" % "test"
),
testFrameworks += new TestFramework("utest.runner.Framework"),
scalaVersion := crossScalaVersions.value.head
)
.jsSettings(
- crossScalaVersions := "2.12.5" :: "2.11.12" :: Nil
+ crossScalaVersions := "2.12.8" :: "2.11.12" :: Nil
)
.jvmSettings(
- crossScalaVersions := "2.12.5" :: "2.11.12" :: Nil
+ crossScalaVersions := "2.12.8" :: "2.11.12" :: Nil
)
.nativeSettings(
crossScalaVersions := "2.11.12" :: Nil,