This is an automated email from the ASF dual-hosted git repository. michaelo pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven-integration-testing.git
The following commit(s) were added to refs/heads/master by this push: new 9181532 [MNG-5640] AbstractMavenLifecycleParticipant#afterSessionEnd is not invoked in some cases 9181532 is described below commit 9181532ef257522ac9990e4b5c35d894d7c7715b Author: Michael Osipov <micha...@apache.org> AuthorDate: Mon Apr 13 16:46:50 2020 +0200 [MNG-5640] AbstractMavenLifecycleParticipant#afterSessionEnd is not invoked in some cases Explicitly set Maven Surefire Plugin version because the test will otherwise be broken by MNG-6551. In version 3.0.0-M4 the output format has changed. --- .../buildfailure-utfail/pom.xml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/core-it-suite/src/test/resources/mng-5640-lifecycleParticipant-afterSession/buildfailure-utfail/pom.xml b/core-it-suite/src/test/resources/mng-5640-lifecycleParticipant-afterSession/buildfailure-utfail/pom.xml index 121b920..d5b8f59 100644 --- a/core-it-suite/src/test/resources/mng-5640-lifecycleParticipant-afterSession/buildfailure-utfail/pom.xml +++ b/core-it-suite/src/test/resources/mng-5640-lifecycleParticipant-afterSession/buildfailure-utfail/pom.xml @@ -44,5 +44,12 @@ under the License. <version>0.1</version> </extension> </extensions> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <version>3.0.0-M3</version> + </plugin> + </plugins> </build> </project>