This message was deleted.
# community-support
s
This message was deleted.
j
why don’t
Copy code
plugins {
    `jvm-test-suite`
}
👍 1
i
It's better, but still I would prefer to have unified way using all plugins
v
Until https://github.com/gradle/gradle/issues/17968 is fixed, declare it with any version in the catalog, for example
_
. Then use
id(libs.plugins.whatEver.get().pluginId)
i
We can retrieve property by using
_providers_.gradleProperty("keyName")
. Is there a way to define "local properties" in
local.properties
file (that is not committed to repo) and retrieve these properties by using
providers...
syntax ?
v
If you code it, sure. Gradle unfortunately does not have "local" properties files.
i
Cna you share some light on what actually needs to be done to code such behaviour?
v
Copy code
providers.provider { /* extract the value here */ }
👍 1