install
abstract fun <C : Any, I : Any> install(plugin: EnginePlugin<C, I>, configure: C.() -> Unit = { }): I
Deprecated
Use installLazy instead
Replace with
installLazy(plugin, configure)
Content copied to clipboard
Install a plugin and configure it.
Return
A plugin instance added to the registry after installation.
Parameters
plugin
A plugin identifier representing the plugin to be installed.
configure
A configuration DSL block to be applied to the plugin on installation.