diff --git a/build.sbt b/build.sbt index b632fe9..249221a 100644 --- a/build.sbt +++ b/build.sbt @@ -88,6 +88,7 @@ lazy val plugin = project sbtPlugin := true, name := "unused-code-plugin", moduleName := "unused-code-plugin", + Test / dependencyClasspath := (Test / dependencyClasspath).value.reverse, ) lazy val common = projectMatrix @@ -122,7 +123,7 @@ lazy val fix = projectMatrix commonSettings, name := "unused-code-scalafix", description := "scalafix rules unused-code", - libraryDependencies += "ch.epfl.scala" %% "scalafix-core" % "0.9.34", + libraryDependencies += "ch.epfl.scala" %% "scalafix-core" % "0.10.0", Compile / resourceGenerators += Def.task { val rules = (Compile / compile).value .asInstanceOf[sbt.internal.inc.Analysis] diff --git a/project/plugins.sbt b/project/plugins.sbt index ca13296..016208e 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -10,4 +10,4 @@ addSbtPlugin("com.github.sbt" % "sbt-release" % "1.1.0") addSbtPlugin("com.github.scalaprops" % "sbt-scalaprops" % "0.4.3") -addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.9.34") +addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.10.0")