Sebastian Schuberth
04/29/2024, 2:24 PMplugins {
alias(libs.plugins.jib) apply false
}
is it then safe / recommended to refer to the plugin again via alias
in subprojects like
plugins {
alias(libs.plugins.jib)
}
or should it actually be
plugins {
id(libs.plugins.jib.get().pluginId)
}
in subprojects then?Sebastian Schuberth
04/29/2024, 2:33 PM