This is an automated email from the ASF dual-hosted git repository. mthmulders pushed a commit to branch MNG-7024 in repository https://gitbox.apache.org/repos/asf/maven-integration-testing.git
commit 6ea9df81b43250f4c7319aeb28a805d1afb6061a Author: Maarten Mulders <[email protected]> AuthorDate: Mon Nov 29 11:00:32 2021 +0100 [MNG-7024] Pin default Maven plugins This prevents the warning about those plugins not having their versions pinned, which would cause the test to fail. --- .../mng-7024-subfolderexecution/module-b/pom.xml | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/core-it-suite/src/test/resources/mng-7024-subfolderexecution/module-b/pom.xml b/core-it-suite/src/test/resources/mng-7024-subfolderexecution/module-b/pom.xml index fe12e95..2807ae3 100644 --- a/core-it-suite/src/test/resources/mng-7024-subfolderexecution/module-b/pom.xml +++ b/core-it-suite/src/test/resources/mng-7024-subfolderexecution/module-b/pom.xml @@ -42,6 +42,32 @@ under the License. </dependencies> <build> + <!-- Pin default Maven plugins to prevent a warning about them not having + their versions pinned --> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-resources-plugin</artifactId> + <version>3.2.0</version> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.8.1</version> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <version>3.2.0</version> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <version>3.0.0-M5</version> + </plugin> + </plugins> + </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId>
