slawekjaranowski commented on code in PR #13080: URL: https://github.com/apache/maven/pull/13080#discussion_r4039255386
########## impl/maven-core/pom.xml: ########## @@ -31,6 +31,26 @@ under the License. <name>Maven 4 Core</name> <description>Maven Core classes.</description> + <properties> + <!-- Default lifecycle plugin versions. + Maintained here so that dependency-update bots (Dependabot, Renovate) + can propose version bumps automatically. Values are filtered into + plugin-versions.properties at build time and loaded at runtime. --> + <version.maven-clean-plugin>3.4.0</version.maven-clean-plugin> + <version.maven-compiler-plugin>3.13.0</version.maven-compiler-plugin> + <version.maven-deploy-plugin>3.1.3</version.maven-deploy-plugin> + <version.maven-ear-plugin>3.3.0</version.maven-ear-plugin> + <version.maven-ejb-plugin>3.2.1</version.maven-ejb-plugin> + <version.maven-install-plugin>3.1.3</version.maven-install-plugin> + <version.maven-jar-plugin>3.4.2</version.maven-jar-plugin> + <version.maven-plugin-plugin>3.15.1</version.maven-plugin-plugin> + <version.maven-rar-plugin>3.0.0</version.maven-rar-plugin> + <version.maven-resources-plugin>3.3.1</version.maven-resources-plugin> + <version.maven-site-plugin>3.21.0</version.maven-site-plugin> + <version.maven-surefire-plugin>3.5.2</version.maven-surefire-plugin> + <version.maven-war-plugin>3.4.0</version.maven-war-plugin> Review Comment: The same properties are in ASD parent, so also available here. ASF parent track 3.x version of standard plugins, if we not need to override it we can use such from parent. https://github.com/apache/maven-apache-parent/blob/master/pom.xml -- 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]
