Package org.gradle.plugin.use
Interface PluginId
public interface PluginId
A description of a plugin.
- Since:
- 3.5
- 
Method SummaryModifier and TypeMethodDescriptiongetId()The fully qualified plugin ID.getName()The plugin name without the namespace.The namespace of the plugin ornullif the ID contains no..withNamespace(String namespace) Takes this unqualified plugin ID and adds a namespace.
- 
Method Details- 
getIdString getId()The fully qualified plugin ID.
- 
getNamespaceThe namespace of the plugin ornullif the ID contains no..
- 
getNameString getName()The plugin name without the namespace.
- 
withNamespaceTakes this unqualified plugin ID and adds a namespace.- Parameters:
- namespace- the namespace to add.
- Returns:
- the plugin ID qualified with the given namespace
- Throws:
- IllegalArgumentException- if the ID already had a namespace
 
 
-