summaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorJim Lawson2017-05-25 18:41:16 -0700
committerJack Koenig2017-05-25 18:41:16 -0700
commitee599da45bd37acc9d2a23dd29cf6edffc355bda (patch)
tree956e300722231c6e56c1f6d77ff1faa01bae3bd2 /build.sbt
parent0d121a2e357511e9e7d975ae5f2d316e47cbf43b (diff)
Support updated scalatest/scalacheck; bump sbt and Scala versions. (#605)
bump scoverage version
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt8
1 files changed, 4 insertions, 4 deletions
diff --git a/build.sbt b/build.sbt
index 0a739a87..2457d42c 100644
--- a/build.sbt
+++ b/build.sbt
@@ -20,7 +20,7 @@ lazy val commonSettings = Seq (
version := "3.1-SNAPSHOT",
git.remoteRepo := "git@github.com:ucb-bar/chisel3.git",
autoAPIMappings := true,
- scalaVersion := "2.11.7",
+ scalaVersion := "2.11.11",
scalacOptions := Seq("-deprecation", "-feature"),
libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaVersion.value,
addCompilerPlugin("org.scalamacros" % "paradise" % "2.1.0" cross CrossVersion.full),
@@ -81,9 +81,9 @@ lazy val chiselSettings = Seq (
),
libraryDependencies ++= Seq(
- "org.scalatest" %% "scalatest" % "2.2.5" % "test",
- "org.scalacheck" %% "scalacheck" % "1.12.4" % "test",
- "com.github.scopt" %% "scopt" % "3.4.0"
+ "org.scalatest" %% "scalatest" % "3.0.1" % "test",
+ "org.scalacheck" %% "scalacheck" % "1.13.4" % "test",
+ "com.github.scopt" %% "scopt" % "3.5.0"
),
// Tests from other projects may still run concurrently.