Sbt Plugin Datasource¶
Table of values¶
| Name | Value | Notes |
|---|---|---|
| Identifier | sbt-plugin |
|
| Default versioning | ivy |
|
| Custom registry support | Yes | |
| Release timestamp support | No | |
| Source URL support | Yes | The source URL is determined from the scm tags in the results. |
Description¶
This datasource finds SBT plugin updates from Maven repositories.
By default, Renovate:
- Checks
https://repo1.maven.org/maven2/for SBT plugins - 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"
]
}