michael-o commented on a change in pull request #533:
URL: https://github.com/apache/maven/pull/533#discussion_r706862552
##########
File path:
maven-core/src/main/java/org/apache/maven/plugin/version/internal/DefaultPluginVersionResolver.java
##########
@@ -90,22 +94,35 @@
public PluginVersionResult resolve( PluginVersionRequest request )
throws PluginVersionResolutionException
{
- PluginVersionResult result = resolveFromProject( request );
+ Map<String, PluginVersionResult> cache = getCache(
request.getRepositorySession().getData() );
+ String key = getKey( request );
+
+ PluginVersionResult result = cache.get( key );
Review comment:
This is get, but where do you populate the cache?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]