api / org.gradle.api.plugins / PluginContainer / getPlugin

getPlugin

abstract fun getPlugin(id: String): Plugin<Any>

Returns a plugin with the specified id if this plugin has been used in the project.

Parameters

id - The id of the plugin

Exceptions

UnknownPluginException - When there is no plugin with the given id.

abstract fun <T : Plugin<Any>> getPlugin(type: Class<T>): T

Returns a plugin with the specified type if this plugin has been used in the project.

Parameters

type - The type of the plugin

Exceptions

UnknownPluginException - When there is no plugin with the given type.