This message was deleted.
# community-support
s
This message was deleted.
j
It is a build.gradle file in the root of the project
m
alias
is to be used with version catalog plugin declarations
apply true
"applies" your plugin, i.e. it calls the
apply
method. This is the default
apply false
will only load it in the build classpath. Meaning you can access its classes but no code is run by default
j
Thanks! So those 3 are basically the same?
Copy code
id "com.github.my-plugin.versions" version "X.X.X"
alias(libs.plugins.pluginB) apply true
alias(libs.plugins.pluginB)
m
yes
thank you 1