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

rfscholte pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-compiler-plugin.git


The following commit(s) were added to refs/heads/master by this push:
     new 74e9f27  Fix singleproject-toolchains
74e9f27 is described below

commit 74e9f2786324d39957bc6e0fa0631e5adb7acf45
Author: rfscholte <[email protected]>
AuthorDate: Sun Jul 15 15:25:21 2018 +0200

    Fix singleproject-toolchains
---
 .../singleproject-toolchains/pom.xml               | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/src/it/multirelease-patterns/singleproject-toolchains/pom.xml 
b/src/it/multirelease-patterns/singleproject-toolchains/pom.xml
index 4c0face..748e50b 100644
--- a/src/it/multirelease-patterns/singleproject-toolchains/pom.xml
+++ b/src/it/multirelease-patterns/singleproject-toolchains/pom.xml
@@ -109,6 +109,26 @@
           </execution>
         </executions>
       </plugin>
+
+      <!-- Rerun unittests with the multirelease jar, cannot be done with 
exploded directory of classes  -->
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-failsafe-plugin</artifactId>
+        <version>2.21.0</version>
+        <executions>
+          <execution>
+            <goals>
+              <goal>integration-test</goal>
+              <goal>verify</goal>
+            </goals>
+          </execution>
+        </executions>
+        <configuration>
+          <includes>
+              <include>**/*Test.java</include>
+          </includes>      
+        </configuration>
+      </plugin>
     </plugins>
   </build>
 
@@ -183,6 +203,8 @@
             <version>2.21.0</version>
             <configuration>
               <jvm>${env.JAVA_HOME}/bin/java</jvm>
+              <!-- this shows that the Java 9 code isn't tested -->
+              <testFailureIgnore>true</testFailureIgnore>
             </configuration>
           </plugin>
         </plugins>

Reply via email to