2. Renovate will search repositories for any `WORKSPACE` files in the repository
3. Existing dependencies will be extracted from `git_repository` and `http_archive` declarations
3. Existing dependencies will be extracted from `container_pull`, `git_repository`, `go_repository`, `maven_install`, and `http_archive`/`http_file` declarations
4. Renovate will replace any old versions with the latest version available
## git_repository
...
...
@@ -54,6 +54,23 @@ http_archive(
Renovate uses the list of **releases** that it finds at the `url` to detect a new version.
## maven_install
By default, Maven dependencies are extracted in the context of Gradle versioning scheme.
To change it, configure `packageRules` like this:
```json
{
"packageRules":[
{
"matchManagers":["bazel"],
"matchDatasources":["maven"],
"versioning":"maven"
}
]
}
```
## Future work
Contributions and/or feature requests are welcome to support more patterns or additional use cases.