From ee2bc4c6dabefd43af47592906217f5469e5774c Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Sat, 28 Sep 2024 20:32:38 +0200 Subject: [PATCH] Update acyclic_2.13.12 to 0.3.15 (#1225) --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index a6de1840f..147ffd40e 100644 --- a/build.sbt +++ b/build.sbt @@ -178,12 +178,12 @@ lazy val core = munit.value % Test, munitScalaCheck.value % Test, // needed for acyclic which we run periodically, not all the time - "com.lihaoyi" % "acyclic_2.13.12" % "0.3.13" % "provided" + "com.lihaoyi" % "acyclic_2.13.12" % "0.3.15" % "provided" ) // periodically we use acyclic to ban cyclic dependencies and make compilation faster , autoCompilerPlugins := true, - addCompilerPlugin("com.lihaoyi" % "acyclic_2.13.12" % "0.3.13"), + addCompilerPlugin("com.lihaoyi" % "acyclic_2.13.12" % "0.3.15"), scalacOptions += "-P:acyclic:force" ).dependsOn(base) .jsSettings(commonJsSettings)