Skip to content

Commit e4a5bc7

Browse files
committed
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.
1 parent 9103777 commit e4a5bc7

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ lazy val root = Project("sbt-scoverage", file("."))
5151
"utf8"
5252
),
5353
resolvers ++= {
54-
if (isSnapshot.value) Seq(Resolver.sonatypeRepo("snapshots")) else Nil
54+
if (isSnapshot.value) Resolver.sonatypeOssRepos("snapshots") else Nil
5555
},
5656
scriptedLaunchOpts ++= Seq(
5757
"-Xmx1024M",

project/plugins.sbt

-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,3 @@ libraryDependencies += "org.scala-sbt" %% "scripted-plugin" % sbtVersion.value
22
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12")
33
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0")
44
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.0")
5-
addSbtPlugin("com.scalawilliam.esbeetee" % "sbt-vspp" % "0.4.11")

0 commit comments

Comments
 (0)