Kelvin Chung
12/07/2024, 3:17 AMbuildscript {
dependencies {
classpath(platform(libs.my.platform))
}
}
plugins {
alias(libs.plugins.my.plugin)
}
and this version catalog:
[libraries]
my-platform = "foo:bar:1.0"
[plugins]
my-plugin = { id = "my-plugin" } # version from my-platform
I'm getting a plugin dependency must include a version number for this source
error; does this mean that the plugin marker artifact needs to also be part of the platform?Vampire
12/07/2024, 12:32 PMKelvin Chung
12/07/2024, 5:16 PMplugins
version catalog entry (ie. PluginDependency
) to a MinimalExternalModuleDependency
for its marker artifact.Vampire
12/07/2024, 11:09 PM