VexRiscv/build.sbt

21 lines
620 B
Plaintext
Raw Normal View History

2023-11-01 04:42:59 -04:00
val spinalVersion = "1.9.4"
2018-09-16 05:00:56 -04:00
lazy val root = (project in file(".")).
settings(
inThisBuild(List(
organization := "com.github.spinalhdl",
2018-12-30 09:51:46 -05:00
scalaVersion := "2.11.12",
2019-04-24 16:17:46 -04:00
version := "2.0.0"
2018-09-16 05:00:56 -04:00
)),
libraryDependencies ++= Seq(
2020-03-09 08:49:06 -04:00
"com.github.spinalhdl" % "spinalhdl-core_2.11" % spinalVersion,
"com.github.spinalhdl" % "spinalhdl-lib_2.11" % spinalVersion,
compilerPlugin("com.github.spinalhdl" % "spinalhdl-idsl-plugin_2.11" % spinalVersion),
2021-06-23 05:48:38 -04:00
"org.scalatest" %% "scalatest" % "3.2.5",
2020-03-09 08:49:06 -04:00
"org.yaml" % "snakeyaml" % "1.8"
2018-09-16 05:00:56 -04:00
),
name := "VexRiscv"
2020-03-09 08:49:06 -04:00
)
2020-05-20 04:37:52 -04:00
fork := true