Package org.gradle.plugin.management
Interface PluginResolveDetails
public interface PluginResolveDetails
Allows plugin resolution rules to inspect a requested plugin and modify which
 target plugin will be used.
- Since:
- 3.5
- 
Method SummaryModifier and TypeMethodDescriptionGet the plugin that was requested.The target plugin request to use.voidSets the implementation module to use for this plugin.voiduseVersion(String version) Sets the version of the plugin to use.
- 
Method Details- 
getRequestedPluginRequest getRequested()Get the plugin that was requested.
- 
useModuleSets the implementation module to use for this plugin.- Parameters:
- notation- the module to use, supports the same notations as- DependencyHandler
 
- 
useVersionSets the version of the plugin to use.- Parameters:
- version- version to use
 
- 
getTargetPluginRequest getTarget()The target plugin request to use.
 
-