This message was deleted.
# community-support
s
This message was deleted.
c
Copy code
class BuildCachePlugin : Plugin<Settings> {
    override fun apply(target: Settings) {
        target.plugins.apply(GradleEnterprisePlugin::class.java)
        // or
        target.pluginManager.apply(GradleEnterprisePlugin::class.java)
e
https://docs.gradle.org/current/javadoc/org/gradle/api/plugins/PluginAware.html#getPlugins--
While not deprecated, it is preferred to use the methods of this interface or the
plugin manager
than use the plugin container.
c
Ah rtfm as usual. Thanks!