diff --git a/.circleci/config.yml b/.circleci/config.yml index 872a45a..60a3713 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,7 +1,7 @@ version: 2.1 orbs: - codacy: codacy/base@10.2.2 + codacy: codacy/base@12.1.5 workflows: version: 2 @@ -12,7 +12,7 @@ workflows: - codacy/sbt: name: populate_cache persist_to_workspace: true - cmd: sbt "set scalafmtUseIvy in ThisBuild := false;update" + cmd: sbt "set ThisBuild / scalafmtUseIvy := false; update" requires: - codacy/checkout_and_version - codacy/sbt: diff --git a/build.sbt b/build.sbt index 0384db3..f19dc28 100644 --- a/build.sbt +++ b/build.sbt @@ -1,5 +1,5 @@ -val scalaVersionNumber = "2.13.1" -val circeVersion = "0.12.3" +val scalaVersionNumber = "2.13.14" +val circeVersion = "0.14.12" val graalVersion = "21.2.0" lazy val root = (project in file(".")) @@ -16,7 +16,8 @@ lazy val root = (project in file(".")) "io.circe" %% "circe-core" % circeVersion, "io.circe" %% "circe-parser" % circeVersion, "com.github.scopt" %% "scopt" % "3.7.1", - "org.scalatest" %% "scalatest" % "3.1.0" % Test + "com.frugalmechanic" %% "fm-sbt-s3-resolver" % "0.21.0", + "org.scalatest" %% "scalatest" % "3.2.19" % Test ), graalVMNativeImageGraalVersion := Some(graalVersion), graalVMNativeImageOptions ++= Seq( diff --git a/project/build.properties b/project/build.properties index dcfaffb..136f452 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.3.8 +sbt.version = 1.10.1 diff --git a/project/plugins.sbt b/project/plugins.sbt index 29f4ae9..eb9c61e 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,8 +1,10 @@ resolvers += Resolver.JCenterRepository -addSbtPlugin("com.codacy" % "codacy-sbt-plugin" % "18.0.3") +addSbtPlugin("com.codacy" % "codacy-sbt-plugin" % "25.2.2") -addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.10") +addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.3.1") -addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.6.1") +addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.3.1") -addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.8.1") +addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.11.1") + +addSbtPlugin("com.frugalmechanic" % "fm-sbt-s3-resolver" % "0.21.0")