From e4a5bc7d5c3bc66c9f18a1b7ef73a54081b64858 Mon Sep 17 00:00:00 2001 From: Chris Kipp Date: Sat, 3 Jun 2023 11:58:54 +0200 Subject: [PATCH] chore: account for 1.9.0 changes - Start using Resolver.sonatypeOssRepos - Remove the sbt-vspp app since publishing with 1.9.0 fixes the issue it solves. --- build.sbt | 2 +- project/plugins.sbt | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index d50e3b18..7981e5da 100644 --- a/build.sbt +++ b/build.sbt @@ -51,7 +51,7 @@ lazy val root = Project("sbt-scoverage", file(".")) "utf8" ), resolvers ++= { - if (isSnapshot.value) Seq(Resolver.sonatypeRepo("snapshots")) else Nil + if (isSnapshot.value) Resolver.sonatypeOssRepos("snapshots") else Nil }, scriptedLaunchOpts ++= Seq( "-Xmx1024M", diff --git a/project/plugins.sbt b/project/plugins.sbt index a56a9b21..5a8060ea 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -2,4 +2,3 @@ libraryDependencies += "org.scala-sbt" %% "scripted-plugin" % sbtVersion.value addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12") addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0") addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.0") -addSbtPlugin("com.scalawilliam.esbeetee" % "sbt-vspp" % "0.4.11")