Files
chipyard/project/Dependencies.scala
chick 2d7806ca79 I would like to take the scalatest version here back to 2.2.5 because it causes problems with IntelliJ right now.
I don't see any specific features of 3.0.0 that are being used here.
2017-03-16 11:48:53 -07:00

20 lines
503 B
Scala

import sbt._
import Keys._
object Dependencies {
val scalatestVersion = "2.2.5"
val scalatest = "org.scalatest" %% "scalatest" % scalatestVersion % "test"
val scalacheckVersion = "1.12.4"
val scalacheck = "org.scalacheck" %% "scalacheck" % scalacheckVersion % "test"
// Templating!
val handlebarsVersion = "2.1.1"
val handlebars = "com.gilt" %% "handlebars-scala" % handlebarsVersion
val commonDependencies: Seq[ModuleID] = Seq(
scalatest,
scalacheck,
handlebars
)
}