Perdjesk commented on issue #603: URL: https://github.com/apache/incubator-baremaps/issues/603#issuecomment-1558599833
A bit of TIL information regarding the following example that caused me some confusion. ``` mvn rat:check ``` By default the maven settings provides a search list of groups for plugins. https://maven.apache.org/settings.html#plugin-groups > The list is searched when a plugin is used and the groupId is not provided in the command line. This list automatically contains org.apache.maven.plugins and org.codehaus.mojo. The above command will thus resolves to `org.codehaus.mojo:rat-maven-plugin:1.0-alpha-3:check` published in 2007. https://central.sonatype.com/artifact/org.codehaus.mojo/rat-maven-plugin/1.0-alpha-3 The current releases of Apache Rat are located at `org.apache.rat:apache-rat-plugin` -- 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]
