api / org.gradle.api.plugins / AppliedPlugin

AppliedPlugin

@Incubating interface AppliedPlugin

Represents a plugin that has been applied.

Currently just provides information about the ID of the plugin.

See Also
org.gradle.api.plugins.PluginAware

Since
2.3

Functions

getId

abstract fun getId(): String

The ID of the plugin.

An example of a plugin ID would be "org.gradle.java". This method always returns the fully qualified ID, regardless of whether the fully qualified ID was used to apply the plugin or not.

This value is guaranteed to be unique, for a given org.gradle.api.plugins.PluginAware.

getName

abstract fun getName(): String

The name of the plugin.

An example of a plugin name would be "java" for the plugin with ID "org.gradle.java". This method always returns the name, regardless of whether the fully qualified ID was used to apply the plugin or not.

If the plugin has an unqualified ID, this method will return the same value as #getId().

getNamespace

abstract fun getNamespace(): String

The namespace of the plugin.

An example of a plugin namespace would be "org.gradle" for the plugin with ID "org.gradle.java". This method always returns the namespace, regardless of whether the fully qualified ID was used to apply the plugin or not.

If the plugin has an unqualified ID, this method will return null.