From 9fa58db15b1f4761f6b761541250f73abe474d77 Mon Sep 17 00:00:00 2001 From: Eduardo Pinto Date: Mon, 14 Nov 2022 11:53:45 +0000 Subject: [PATCH 1/3] chore: upgrade scala version to 2.13.9 --- codegen/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codegen/build.sbt b/codegen/build.sbt index d908c2d8..64266c82 100644 --- a/codegen/build.sbt +++ b/codegen/build.sbt @@ -131,7 +131,7 @@ lazy val library = lazy val commonSettings = Seq( - scalaVersion := "2.13.4", + scalaVersion := "2.13.9", organization := "io.kalix", organizationName := "Lightbend Inc", startYear := Some(2021), From b5fa719119806309881a945ad1f279d7ba03118a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johan=20Andr=C3=A9n?= Date: Thu, 9 Feb 2023 16:31:50 +0100 Subject: [PATCH 2/3] Skip wartremover --- codegen/build.sbt | 1 - codegen/project/plugins.sbt | 1 - 2 files changed, 2 deletions(-) diff --git a/codegen/build.sbt b/codegen/build.sbt index 64266c82..f8844659 100644 --- a/codegen/build.sbt +++ b/codegen/build.sbt @@ -138,7 +138,6 @@ lazy val commonSettings = scalacOptions ++= Seq("-unchecked", "-deprecation", "-language:_", "-encoding", "UTF-8", "-Ywarn-unused:imports"), testFrameworks += new TestFramework("munit.Framework"), scalafmtOnCompile := true, - Compile / compile / wartremoverWarnings ++= Warts.unsafe, headerLicense := Some(HeaderLicense.Custom("""|Copyright (c) Lightbend Inc. 2021 | |""".stripMargin)), diff --git a/codegen/project/plugins.sbt b/codegen/project/plugins.sbt index 9c5e45eb..7299b709 100644 --- a/codegen/project/plugins.sbt +++ b/codegen/project/plugins.sbt @@ -1,7 +1,6 @@ addSbtPlugin("com.dwijnand" % "sbt-dynver" % "4.1.1") addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.7.0") addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.5") -addSbtPlugin("org.wartremover" % "sbt-wartremover" % "2.4.13") addSbtPlugin("org.scalameta" % "sbt-native-image" % "0.3.0") addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0") addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.15.0") From a1b1ac963f6a1ff1ca56445e62e188e85e045eb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johan=20Andr=C3=A9n?= Date: Thu, 9 Feb 2023 17:08:25 +0100 Subject: [PATCH 3/3] Make it 2.13.10 --- codegen/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codegen/build.sbt b/codegen/build.sbt index f8844659..fd2e9f06 100644 --- a/codegen/build.sbt +++ b/codegen/build.sbt @@ -131,7 +131,7 @@ lazy val library = lazy val commonSettings = Seq( - scalaVersion := "2.13.9", + scalaVersion := "2.13.10", organization := "io.kalix", organizationName := "Lightbend Inc", startYear := Some(2021),