added missing apache commons dependencies
(cherry picked from commit 47bfb16c6565510004fbead697c3810c3eeb9f8b)
This commit is contained in:
committed by
mergify-bot
parent
46d902943e
commit
574b5f7bee
@@ -63,7 +63,9 @@ def isolateAllTests(tests: Seq[TestDefinition]) = tests map { test =>
|
|||||||
val chiselVersion = "3.5.1"
|
val chiselVersion = "3.5.1"
|
||||||
|
|
||||||
lazy val chiselSettings = Seq(
|
lazy val chiselSettings = Seq(
|
||||||
libraryDependencies ++= Seq("edu.berkeley.cs" %% "chisel3" % chiselVersion),
|
libraryDependencies ++= Seq("edu.berkeley.cs" %% "chisel3" % chiselVersion,
|
||||||
|
"org.apache.commons" % "commons-lang3" % "3.12.0",
|
||||||
|
"org.apache.commons" % "commons-text" % "1.9"),
|
||||||
addCompilerPlugin("edu.berkeley.cs" % "chisel3-plugin" % chiselVersion cross CrossVersion.full))
|
addCompilerPlugin("edu.berkeley.cs" % "chisel3-plugin" % chiselVersion cross CrossVersion.full))
|
||||||
|
|
||||||
val firrtlVersion = "1.5.1"
|
val firrtlVersion = "1.5.1"
|
||||||
@@ -119,6 +121,7 @@ lazy val rocketchip = freshProject("rocketchip", rocketChipDir)
|
|||||||
libraryDependencies ++= Seq(
|
libraryDependencies ++= Seq(
|
||||||
"org.scala-lang" % "scala-reflect" % scalaVersion.value,
|
"org.scala-lang" % "scala-reflect" % scalaVersion.value,
|
||||||
"org.json4s" %% "json4s-jackson" % "3.6.1",
|
"org.json4s" %% "json4s-jackson" % "3.6.1",
|
||||||
|
"org.apache.commons" % "commons-lang3" % "3.12.0",
|
||||||
"org.scalatest" %% "scalatest" % "3.2.0" % "test"
|
"org.scalatest" %% "scalatest" % "3.2.0" % "test"
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user