Skip to content

Commit

Permalink
chore: account for 1.9.0 changes
Browse files Browse the repository at this point in the history
- Start using Resolver.sonatypeOssRepos
- Remove the sbt-vspp app since publishing with 1.9.0 fixes the issue it
  solves.
  • Loading branch information
ckipp01 committed Jun 3, 2023
1 parent 9103777 commit e4a5bc7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
1 change: 0 additions & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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")

0 comments on commit e4a5bc7

Please sign in to comment.