mirror of
https://github.com/renovatebot/renovate.git
synced 2024-12-22 21:48:32 +00:00
0208d76027
Co-authored-by: Sergei Zharinov <zharinov@users.noreply.github.com> Co-authored-by: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com> Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
21 lines
620 B
Markdown
21 lines
620 B
Markdown
This datasource finds SBT plugin updates from Maven repositories.
|
|
|
|
By default, Renovate:
|
|
|
|
1. Checks `https://repo1.maven.org/maven2/` for SBT plugins
|
|
1. 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:
|
|
|
|
```json
|
|
{
|
|
"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"
|
|
]
|
|
}
|
|
```
|