cleanup build.sbt

This commit is contained in:
Dolu1990
2020-03-09 12:34:41 +01:00
parent 648d530e4d
commit b524ddddd8

View File

@@ -1,15 +1,13 @@
name := "SpinalTemplateSbt" name := "SpinalTemplateSbt"
version := "1.0" version := "1.0"
scalaVersion := "2.11.12" scalaVersion := "2.11.12"
val spinalVersion = "1.4.0"
EclipseKeys.withSource := true
libraryDependencies ++= Seq( libraryDependencies ++= Seq(
"com.github.spinalhdl" % "spinalhdl-core_2.11" % "1.4.0", "com.github.spinalhdl" % "spinalhdl-core_2.11" % spinalVersion,
"com.github.spinalhdl" % "spinalhdl-lib_2.11" % "1.4.0", "com.github.spinalhdl" % "spinalhdl-lib_2.11" % spinalVersion,
compilerPlugin("com.github.spinalhdl" % "spinalhdl-idsl-plugin_2.11" % "1.4.0") compilerPlugin("com.github.spinalhdl" % "spinalhdl-idsl-plugin_2.11" % spinalVersion)
) )
fork := true fork := true
EclipseKeys.withSource := true