Skip to content

Commit

Permalink
Fix sbt project name. Update sbt version.
Browse files Browse the repository at this point in the history
  • Loading branch information
ccromjongh committed Apr 8, 2024
1 parent b3aa13d commit 9d3e373
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 10 deletions.
15 changes: 6 additions & 9 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
ThisBuild / name := "Tydi-Chisel"
ThisBuild / description := "Tydi-Chisel is an implementation of Tydi concepts in the Chisel HDL."
ThisBuild / homepage := Some(url("https://github.com/abs-tudelft/tydi-chisel"))
ThisBuild / organizationHomepage := Some(url("https://github.com/abs-tudelft/"))
ThisBuild / licenses := List(License.Apache2)
Expand All @@ -14,6 +12,8 @@ val chiselVersion = "5.1.0"

lazy val root = (project in file("."))
.settings(
name := "Tydi-Chisel",
description := "Tydi-Chisel is an implementation of Tydi concepts in the Chisel HDL.",
libraryDependencies += "org.chipsalliance" %% "chisel" % chiselVersion,
libraryDependencies += "edu.berkeley.cs" %% "chiseltest" % "5.0.2",
scalacOptions ++= Seq(
Expand All @@ -26,13 +26,10 @@ lazy val root = (project in file("."))
addCompilerPlugin("org.chipsalliance" % "chisel-plugin" % chiselVersion cross CrossVersion.full)
)

inThisBuild(
List(
semanticdbEnabled := true,
semanticdbVersion := scalafixSemanticdb.revision,
scalafixScalaBinaryVersion := scalaBinaryVersion.value
)
)
// Settings required for scalafix
ThisBuild / semanticdbEnabled := true
ThisBuild / semanticdbVersion := scalafixSemanticdb.revision
ThisBuild / scalafixScalaBinaryVersion := scalaBinaryVersion.value

val CICommands =
Seq("clean", "compile", "test", "scalafmtCheckAll", "scalafmtSbtCheck", "scalafixAll --check").mkString(";")
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version = 1.8.2
sbt.version = 1.9.8

0 comments on commit 9d3e373

Please sign in to comment.