I hate to ask because I recall I saw it somewhere ...
# plugin-development
g
I hate to ask because I recall I saw it somewhere recently but I cant seem to find it again.. how can I apply a plugin (ie
maven-publish
) from within another
::apply
plugin?
j
pluginManager.apply
👍 1
v
Just the past after the dot actually. If something has
pluginManager
, it implements
PluginAware
and thus directly has the
apply
method, no need to use
pluginManager
explicitly. :-)
👍 1