VexRiscv/build.sbt

21 lines
611 B
Plaintext
Raw Normal View History

val spinalVersion = "1.10.2a"
2018-09-16 05:00:56 -04:00
lazy val root = (project in file(".")).
settings(
inThisBuild(List(
organization := "com.github.spinalhdl",
scalaVersion := "2.12.18",
2019-04-24 16:17:46 -04:00
version := "2.0.0"
2018-09-16 05:00:56 -04:00
)),
libraryDependencies ++= Seq(
"com.github.spinalhdl" %% "spinalhdl-core" % spinalVersion,
"com.github.spinalhdl" %% "spinalhdl-lib" % spinalVersion,
compilerPlugin("com.github.spinalhdl" %% "spinalhdl-idsl-plugin" % spinalVersion),
"org.scalatest" %% "scalatest" % "3.2.17",
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