A feature request about toml - I would like to spe...
# dependency-management
e
A feature request about toml - I would like to specify configuration in bundle section. As example, I have dependencies and lint rules made by community (not shipped with libraries). It would be great to define bundle with library as implementation configuration and lint dependency as check configuration. What do you think?
1
i
Isn't that what convention plugins are for?
e
Sure that is solution for now. Just wonder since we have bundles, would be great to something like this. At the same time toml format is not great for that probabaly.
i
Once DCL is stable there will probably be nicer ways to do this
v
As far as I know version catalogs do intentionally not have information like that. They are just a dumb list of versions and coordinates that you can pick from and use how you need them. You can not even specify the feature variant you need, or the classifier you need, or that you need it as platform as it is a BOM, and so on. All these are considered use-site details by the Gradle folks and do not make it into the version catalog, also because you could use the same entry in different ways at different places.
2
e
Fair