From 786f77bfb97c307c3fe07a9dfc6efb3409234fbd Mon Sep 17 00:00:00 2001 From: Chris Stewart Date: Mon, 31 Oct 2022 14:57:19 -0500 Subject: [PATCH] Upgrade sbt ci release to 1.5.11 (#4865) * Upgrade sbt ci release to 1.5.11 * Fix import names as suggested by Ben --- build.sbt | 2 +- inThisBuild.sbt | 2 +- project/plugins.sbt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build.sbt b/build.sbt index e5f57f0ac2..3c9db00fc1 100644 --- a/build.sbt +++ b/build.sbt @@ -1,4 +1,4 @@ -import com.typesafe.sbt.SbtGit.GitKeys._ +import com.github.sbt.git.SbtGit.GitKeys._ import sbt.Keys.{publish, publishLocal} import scala.util.Properties diff --git a/inThisBuild.sbt b/inThisBuild.sbt index 31c4061337..12f91b7a7d 100644 --- a/inThisBuild.sbt +++ b/inThisBuild.sbt @@ -15,7 +15,7 @@ ThisBuild / crossScalaVersions := List(scala2_13) Global / excludeLintKeys ++= Set( com.typesafe.sbt.packager.Keys.maintainer, Keys.mainClass, - com.typesafe.sbt.SbtGit.GitKeys.gitRemoteRepo + com.github.sbt.git.SbtGit.GitKeys.gitRemoteRepo ) //needed so that we can use our versions with docker diff --git a/project/plugins.sbt b/project/plugins.sbt index e8f9bfa5d1..e8731a5d87 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -29,7 +29,7 @@ addSbtPlugin("ch.epfl.scala" % "sbt-bloop" % "1.5.4") //tool to publish snapshots to sonatype after CI builds finish //https://github.com/olafurpg/sbt-ci-release -addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.10") +addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.11") // write markdown files with type-checked Scala //https://github.com/scalameta/mdoc