Add more plugins and libdeps
This commit is contained in:
@@ -25,7 +25,9 @@ lazy val commonSettings = Seq(
|
|||||||
"org.typelevel" %% "spire" % "0.16.2",
|
"org.typelevel" %% "spire" % "0.16.2",
|
||||||
"org.scalanlp" %% "breeze" % "1.0",
|
"org.scalanlp" %% "breeze" % "1.0",
|
||||||
"org.json4s" %% "json4s-native" % "3.6.10",
|
"org.json4s" %% "json4s-native" % "3.6.10",
|
||||||
"junit" % "junit" % "4.13"
|
"junit" % "junit" % "4.13",
|
||||||
|
"org.apache.commons" % "commons-text" % "1.8",
|
||||||
|
"net.jcazevedo" %% "moultingyaml" % "0.4.2"
|
||||||
),
|
),
|
||||||
addCompilerPlugin("org.scalamacros" % "paradise" % "2.1.0" cross CrossVersion.full),
|
addCompilerPlugin("org.scalamacros" % "paradise" % "2.1.0" cross CrossVersion.full),
|
||||||
unmanagedBase := (chipyardRoot / unmanagedBase).value,
|
unmanagedBase := (chipyardRoot / unmanagedBase).value,
|
||||||
@@ -98,12 +100,13 @@ lazy val firrtl_interpreter = (project in file("tools/firrtl-interpreter"))
|
|||||||
.settings(commonSettings)
|
.settings(commonSettings)
|
||||||
|
|
||||||
lazy val treadle = (project in file("tools/treadle"))
|
lazy val treadle = (project in file("tools/treadle"))
|
||||||
|
.dependsOn(firrtlRef)
|
||||||
.settings(commonSettings)
|
.settings(commonSettings)
|
||||||
|
|
||||||
lazy val chisel_testers = (project in file("tools/chisel-testers"))
|
lazy val chisel_testers = (project in file("tools/chisel-testers"))
|
||||||
.sourceDependency(chisel, chiselLib)
|
.sourceDependency(chisel, chiselLib)
|
||||||
.settings(addCompilerPlugin(chiselPluginLib))
|
.settings(addCompilerPlugin(chiselPluginLib))
|
||||||
.dependsOn(firrtl_interpreter, treadle)
|
.dependsOn(firrtl_interpreter, treadle, firrtlRef)
|
||||||
.settings(
|
.settings(
|
||||||
commonSettings,
|
commonSettings,
|
||||||
libraryDependencies ++= Seq(
|
libraryDependencies ++= Seq(
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ addSbtPlugin("com.eed3si9n" % "sbt-unidoc" % "0.4.1")
|
|||||||
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.1")
|
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.1")
|
||||||
addSbtPlugin("org.scalastyle" %% "scalastyle-sbt-plugin" % "1.0.0")
|
addSbtPlugin("org.scalastyle" %% "scalastyle-sbt-plugin" % "1.0.0")
|
||||||
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.15.0")
|
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.15.0")
|
||||||
addSbtPlugin("com.simplytyped" % "sbt-antlr4" % "0.8.1")
|
addSbtPlugin("com.simplytyped" % "sbt-antlr4" % "0.8.2")
|
||||||
addSbtPlugin("com.github.gseitz" % "sbt-protobuf" % "0.6.3")
|
addSbtPlugin("com.github.gseitz" % "sbt-protobuf" % "0.6.3")
|
||||||
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.9.21")
|
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.9.21")
|
||||||
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.6.1")
|
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.6.1")
|
||||||
|
|||||||
Reference in New Issue
Block a user