From 57748f01a49dffd39ee77f5f6c199e5eb09f3c03 Mon Sep 17 00:00:00 2001 From: Sam Escolas Date: Wed, 30 Apr 2025 07:37:05 -0600 Subject: [PATCH] Publish to S3. --- README.md | 2 +- build.sbt | 2 +- project/plugins.sbt | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 38c43ba..6ebc3c8 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ interpolation, and calls to `mkString` on iterables of that type. Add the resolver and compiler plugin dependency to your `build.sbt`: ```scala -resolvers += "GitHub Packages (disable-toString)" at "https://maven.pkg.github.com/mblink/disable-toString" +resolvers += "bondlink-maven-repo" at "https://s3.amazonaws.com/bondlink-maven-repo" addCompilerPlugin("bondlink" %% "disable-to-string-plugin" % "0.2.2") ``` diff --git a/build.sbt b/build.sbt index 50327c3..d2ce226 100644 --- a/build.sbt +++ b/build.sbt @@ -28,7 +28,7 @@ val baseSettings = Seq( scalaVersion := scalaVersions.find(_.startsWith("3.")).get, organization := "bondlink", version := "0.2.2", - publishTo := Some("GitHub Package Registry".at("https://maven.pkg.github.com/mblink/disable-toString")), + publishTo := Some("BondLink S3".at("s3://bondlink-maven-repo")), ) lazy val disableToStringPlugin = project.in(file(".")) diff --git a/project/plugins.sbt b/project/plugins.sbt index 3e5f6d9..72b3a4e 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,2 +1,3 @@ addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.24.0") addSbtPlugin("org.typelevel" % "sbt-tpolecat" % "0.5.2") +addSbtPlugin("com.frugalmechanic" % "fm-sbt-s3-resolver" % "0.23.0")