I am trying to figure out whether it is possible to declare plugin in version catalogs if it has a group also.
If i try to declare it like this
libs.versions.toml
[plugins]
google-services = { id = "com.google.gms:google-services", version = "4.3.10" }
build.gradle
plugins {
alias(libs.plugins.google.services)
}
I receive the next error
> plugin id 'com.google.gms:google-services' is invalid: Plugin id contains invalid char ':' (only ASCII alphanumeric characters, '.', '_' and '-' characters are valid)
Any suggestions how to use it properly for plugins?