From 88533c58077484bfdadfa4db9b0522b2a8a8c071 Mon Sep 17 00:00:00 2001 From: kenji yoshida <6b656e6a69@gmail.com> Date: Mon, 9 Oct 2023 10:34:11 +0900 Subject: [PATCH] update scala 3 build setting --- build.sbt | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/build.sbt b/build.sbt index 07897fa24..4cbe019db 100644 --- a/build.sbt +++ b/build.sbt @@ -19,15 +19,6 @@ scalaVersion := "2.13.12" crossScalaVersions += "3.3.1" -conflictWarning := { - if (scalaBinaryVersion.value == "3") { - // TODO remove this workaround - ConflictWarning("warn", Level.Warn, false) - } else { - conflictWarning.value - } -} - // scalafmtOnCompile := true coverageExcludedPackages := ".*\\.html\\..*" @@ -82,15 +73,6 @@ libraryDependencies ++= Seq( "org.kohsuke" % "github-api" % "1.316" % "test" ) -libraryDependencies ~= { - _.map { - case x if x.name == "twirl-api" => - x cross CrossVersion.for3Use2_13 - case x => - x - } -} - // Compiler settings scalacOptions := Seq( "-deprecation",