install

fun install(plugins: Iterable<LazyPlugin<S, I, A>>)
fun install(plugin: LazyPlugin<S, I, A>, vararg other: LazyPlugin<S, I, A>)

Install StorePlugins. See the other overload to build the plugin on the fly. This installs prebuilt plugins.

Plugins will preserve the order of installation and will proceed according to this order. See StorePlugin for comprehensive information on the behavior of plugins.

Installation of the same plugin multiple times is not allowed. See StorePlugin.name for more info and solutions.


inline fun install(crossinline block: LazyPluginBuilder<S, I, A>.() -> Unit)

Create and install a new StorePlugin. Please see documentation for the other overload for more details.

See also


Alias for install