From b45999095e7e822389f60206a8dc9262c07ff23d Mon Sep 17 00:00:00 2001 From: xerial-bot Date: Fri, 9 Aug 2024 17:52:12 -0700 Subject: [PATCH] Update sbt-sonatype to 3.11.2 (#3603) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## About this PR 📦 Updates [org.xerial.sbt:sbt-sonatype](https://github.com/xerial/sbt-sonatype) from `3.11.1` to `3.11.2` 📜 [GitHub Release Notes](https://github.com/xerial/sbt-sonatype/releases/tag/v3.11.2) - [Release Notes](https://github.com/xerial/sbt-sonatype/blob/master/ReleaseNotes.md) - [Version Diff](https://github.com/xerial/sbt-sonatype/compare/v3.11.1...v3.11.2) ## Usage ✅ **Please merge!** I'll automatically update this PR to resolve conflicts as long as you don't change it yourself. If you'd like to skip this version, you can just close this PR. If you have any feedback, just mention me in the comments below. Configure Scala Steward for your repository with a [`.scala-steward.conf`](https://github.com/scala-steward-org/scala-steward/blob/7ec418cd5441d449f037bca6d34326534c07a5dd/docs/repo-specific-configuration.md) file. _Have a fantastic day writing Scala!_
âš™ Adjust future updates Add this to your `.scala-steward.conf` file to ignore future updates of this dependency: ``` updates.ignore = [ { groupId = "org.xerial.sbt", artifactId = "sbt-sonatype" } ] ``` Or, add this to slow down future updates of this dependency: ``` dependencyOverrides = [{ pullRequests = { frequency = "30 days" }, dependency = { groupId = "org.xerial.sbt", artifactId = "sbt-sonatype" } }] ```
labels: sbt-plugin-update --- project/plugin.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugin.sbt b/project/plugin.sbt index 62d01e365..e8cbc344a 100755 --- a/project/plugin.sbt +++ b/project/plugin.sbt @@ -2,7 +2,7 @@ // sbt-scoverage upgraded to scala-xml 2.1.0, but other sbt-plugins and Scala compilier 2.12 uses scala-xml 1.x.x ThisBuild / libraryDependencySchemes += "org.scala-lang.modules" %% "scala-xml" % "always" -addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.11.1") +addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.11.2") addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.2.1") addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.1.0") addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")