You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by rf...@apache.org on 2019/04/07 10:11:32 UTC

[maven-project-utils] branch stabilize updated: Don't ignore failing invoker tests

This is an automated email from the ASF dual-hosted git repository.

rfscholte pushed a commit to branch stabilize
in repository https://gitbox.apache.org/repos/asf/maven-project-utils.git


The following commit(s) were added to refs/heads/stabilize by this push:
     new a9cd393  Don't ignore failing invoker tests
a9cd393 is described below

commit a9cd3934b3aa2963ca58a2e1e2b87d0ef3c9445c
Author: rfscholte <rf...@apache.org>
AuthorDate: Sun Apr 7 12:11:24 2019 +0200

    Don't ignore failing invoker tests
---
 pom.xml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/pom.xml b/pom.xml
index 30a4a7f..fd8d730 100644
--- a/pom.xml
+++ b/pom.xml
@@ -92,6 +92,9 @@ under the License.
   <profiles>
     <profile>
       <id>run-its</id>
+      <properties>
+        <maven.it.failure.ignore>false</maven.it.failure.ignore>
+      </properties>
       <build>
         <plugins>
           <plugin>
@@ -110,6 +113,7 @@ under the License.
               <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
               <localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
               <settingsFile>src/it/settings.xml</settingsFile>
+              <ignoreFailures>${maven.it.failure.ignore}</ignoreFailures>
             </configuration>
           </plugin>
         </plugins>