This is an automated email from the ASF dual-hosted git repository. sjaranowski pushed a commit to branch SUREFIRE-2269-workaround in repository https://gitbox.apache.org/repos/asf/maven-surefire.git
commit 305db646fb68189ec0f4d782960bfd0004d17641 Author: Slawomir Jaranowski <[email protected]> AuthorDate: Tue Sep 24 08:23:57 2024 +0200 [SUREFIRE-2269] Allow fail during clean in surefire-its --- surefire-its/pom.xml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/surefire-its/pom.xml b/surefire-its/pom.xml index 4e42b5548..99b0b516b 100644 --- a/surefire-its/pom.xml +++ b/surefire-its/pom.xml @@ -114,6 +114,20 @@ </includes> </resource> </resources> + + <pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-clean-plugin</artifactId> + <configuration> + <!-- workaround for SUREFIRE-2269 --> + <failOnError>false</failOnError> + </configuration> + </plugin> + </plugins> + </pluginManagement> + <plugins> <plugin> <artifactId>maven-help-plugin</artifactId>
