Slackbot
05/27/2022, 5:18 PMClayton Walker
05/27/2022, 5:24 PMclass BuildCachePlugin : Plugin<Settings> {
override fun apply(target: Settings) {
target.plugins.apply(GradleEnterprisePlugin::class.java)
// or
target.pluginManager.apply(GradleEnterprisePlugin::class.java)
ephemient
05/27/2022, 5:26 PMWhile not deprecated, it is preferred to use the methods of this interface or thethan use the plugin container.plugin manager
Clayton Walker
05/27/2022, 5:27 PM