Skip to content

Commit

Permalink
Remove scalafix (#10)
Browse files Browse the repository at this point in the history
* remove scalafix, bump some dependencies, fix sbt deprecated syntax
  • Loading branch information
vighneshiyer committed May 5, 2023
1 parent 8f7053a commit 219ff3e
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ lazy val isAtLeastScala213 = Def.setting {
lazy val firrtlSettings = Seq(
name := "firrtl",
version := "2.0-SNAPSHOT",
addCompilerPlugin(scalafixSemanticdb),
scalacOptions := Seq(
"-deprecation",
"-unchecked",
Expand All @@ -31,11 +30,11 @@ lazy val firrtlSettings = Seq(
"org.scala-lang" % "scala-reflect" % scalaVersion.value,
"org.scalatest" %% "scalatest" % "3.2.14" % "test",
"org.scalatestplus" %% "scalacheck-1-15" % "3.2.11.0" % "test",
"com.github.scopt" %% "scopt" % "3.7.1",
"com.github.scopt" %% "scopt" % "4.1.0",
"org.json4s" %% "json4s-native" % "4.0.6",
"org.apache.commons" % "commons-text" % "1.10.0",
"io.github.alexarchambault" %% "data-class" % "0.2.5",
"com.lihaoyi" %% "os-lib" % "0.8.1"
"com.lihaoyi" %% "os-lib" % "0.9.1"
),
// macros for the data-class library
libraryDependencies ++= {
Expand All @@ -53,10 +52,8 @@ lazy val firrtlSettings = Seq(
case _ => Seq("org.scala-lang.modules" %% "scala-parallel-collections" % "1.0.4")
}
},
resolvers ++= Seq(
Resolver.sonatypeRepo("snapshots"),
Resolver.sonatypeRepo("releases")
)
resolvers ++= Resolver.sonatypeOssRepos("snapshots"),
resolvers ++= Resolver.sonatypeOssRepos("releases")
)

lazy val mimaSettings = Seq(
Expand Down

0 comments on commit 219ff3e

Please sign in to comment.