You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Gradle has Version Catalogs which are lists of dependencies in gradle/libs.versions.toml files which Scala Steward could easily extract dependencies from and therefore partially support Gradle builds. A Version Catalog does not include resolvers, so in a first step Scala Steward would only use the default resolver to look for new versions.
The text was updated successfully, but these errors were encountered:
This adds partial support for Gradle builds that use a [version
catalog](https://docs.gradle.org/current/userguide/version_catalogs.html)
(i.e. a `gradle/libs.versions.toml` file). Dependencies are extracted
from the version catalog just by parsing the `libs.versions.toml` file.
Since the version catalog only contains libraries and no resolvers, the
default resolver is used for the `Scope` of these libraries. This is
one reason why this Gradle support is only partial. The other is that
additional dependencies and plugins that are defined in other Gradle
build files are also ignored.
Closes: #3534
This adds partial support for Gradle builds that use a [version
catalog](https://docs.gradle.org/current/userguide/version_catalogs.html)
(i.e. a `gradle/libs.versions.toml` file). Dependencies are extracted
from the version catalog just by parsing the `libs.versions.toml` file.
Since the version catalog only contains libraries and no resolvers, the
default resolver is used for the `Scope` of these libraries. This is
one reason why this Gradle support is only partial. The other is that
additional dependencies and plugins that are defined in other Gradle
build files are also ignored.
Closes: #3534
Gradle has Version Catalogs which are lists of dependencies in
gradle/libs.versions.toml
files which Scala Steward could easily extract dependencies from and therefore partially support Gradle builds. A Version Catalog does not include resolvers, so in a first step Scala Steward would only use the default resolver to look for new versions.The text was updated successfully, but these errors were encountered: