-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
22 lines (17 loc) · 787 Bytes
/
build.sbt
File metadata and controls
22 lines (17 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
scalaVersion := "2.12.4"
name := "chisel-scalacheck"
organization := ""
version := "0.1"
// Provide a managed dependency on X if -DXVersion="" is supplied on the command line.
// The following are the default development versions, not the "release" versions.
val defaultVersions = Map(
"chisel3" -> "3.0.+",
"chisel-iotesters" -> "1.1.+"
)
libraryDependencies ++= (Seq("chisel3", "chisel-iotesters").map { dep: String =>
"edu.berkeley.cs" %% dep % sys.props.getOrElse(dep + "Version",
defaultVersions(dep))
})
libraryDependencies += "edu.berkeley.cs" %% "firrtl" % "1.0.+" % Test
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.5" % Test
libraryDependencies += "org.scalacheck" %% "scalacheck" % "1.13.4" % "test"