michael-o commented on code in PR #765: URL: https://github.com/apache/maven/pull/765#discussion_r928173326
########## maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java: ########## @@ -419,6 +424,29 @@ private void createPluginRealm( PluginDescriptor pluginDescriptor, MavenSession pluginDescriptor.setClassRealm( pluginRealm ); pluginDescriptor.setArtifacts( pluginArtifacts ); + + try + { + GenericVersionScheme versionScheme = new GenericVersionScheme(); + Version minimumVersion = versionScheme.parseVersion( "3.1.0" ); Review Comment: Would it make sense to make is static final to avoid constant parsing? -- 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: issues-unsubscr...@maven.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org