Question: I currently have, in a plugin: ```plugin...
# plugin-development
k
Question: I currently have, in a plugin:
Copy code
plugins {
  `version-catalog`
}

catalog {
  versionCatalog {
    version("my-project-version", version.toString())
  }
}
Is it possible to somehow pass in a
Provider
of some kind instead? This is is especially important if I use something like the Reckon plugin, which is causing CC issues because of this eager version resolution.