From abf415f06420ca55e0f25ca9530ecbedda0c49a0 Mon Sep 17 00:00:00 2001 From: LAKKA Date: Tue, 31 May 2022 22:03:24 +0900 Subject: [PATCH] Fix build.sbt Only this version is supported. --- build.sbt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.sbt b/build.sbt index a264e26..4e453f9 100644 --- a/build.sbt +++ b/build.sbt @@ -5,9 +5,9 @@ version := "0.1" scalaVersion := "2.11.12" libraryDependencies ++= Seq( - "com.github.spinalhdl" % "spinalhdl-core_2.11" % "latest.release", - "com.github.spinalhdl" % "spinalhdl-lib_2.11" % "latest.release", - compilerPlugin("com.github.spinalhdl" % "spinalhdl-idsl-plugin_2.11" % "latest.release"), + "com.github.spinalhdl" % "spinalhdl-core_2.11" % "1.6.0", + "com.github.spinalhdl" % "spinalhdl-lib_2.11" % "1.6.0", + compilerPlugin("com.github.spinalhdl" % "spinalhdl-idsl-plugin_2.11" % "1.6.0"), "org.scalatest" % "scalatest_2.11" % "2.2.1", "org.yaml" % "snakeyaml" % "1.8" )