When referring to but not applying a plugin in the...
# community-support
s
When referring to but not applying a plugin in the root project like
Copy code
plugins {
    alias(libs.plugins.jib) apply false
}
is it then safe / recommended to refer to the plugin again via
alias
in subprojects like
Copy code
plugins {
    alias(libs.plugins.jib)
}
or should it actually be
Copy code
plugins {
    id(libs.plugins.jib.get().pluginId)
}
in subprojects then?
s
So to conclude here for reference, it's safe and possible to do since Gradle 7.4 👍
1
☝️ 1