renovate/lib/modules/datasource/sbt-plugin
Michael Kriese 19c115c813
test: cleanup (#34785)
2025-03-13 17:52:09 +00:00
..
__fixtures__ refactor: lib/modules (#14488) 2022-03-04 09:04:02 +01:00
__snapshots__ test: migrate to vitest (#34475) 2025-02-26 09:35:54 +00:00
index.spec.ts test: cleanup (#34785) 2025-03-13 17:52:09 +00:00
index.ts fix: improve coverage (#34667) 2025-03-06 17:05:19 +00:00
readme.md fix(sbt-plugin): add new default registry URL (#29648) 2024-07-01 09:54:33 +00:00

readme.md

This datasource finds SBT plugin updates from Maven repositories.

By default, Renovate:

  1. Checks https://repo1.maven.org/maven2/ for SBT plugins
  2. If the above URL returns no results, then Renovate tries the legacy URL: https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases

You can override the default behavior with the registryUrls config option. For example:

{
  "matchDatasources": ["sbt-plugin"],
  "registryUrls": [
    "https://repo1.maven.org/maven2/",
    "https://oss.sonatype.org/content/repositories/snapshots",
    "https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases"
  ]
}