Skip to content

Commit

Permalink
[issue-325] - Set the Surefire plugin runOrder param to alphabetical,…
Browse files Browse the repository at this point in the history
… to workaround WFLY-20325
  • Loading branch information
fabiobrz authored and marekkopecky committed Jan 30, 2025
1 parent 76806af commit 038cb9c
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions microprofile-health/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,19 @@
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<!-- TODO: remove once https://issues.redhat.com/browse/WFLY-20325 is solved -->
<configuration>
<runOrder>alphabetical</runOrder>
</configuration>
</plugin>
</plugins>
</build>

<profiles>
<!-- Test against Bootable JAR -->
<profile>
Expand Down Expand Up @@ -108,6 +121,8 @@
org.wildfly.arquillian:wildfly-arquillian-container-managed
</classpathDependencyExclude>
</classpathDependencyExcludes>
<!-- TODO: remove once https://issues.redhat.com/browse/WFLY-20325 is solved -->
<runOrder>alphabetical</runOrder>
</configuration>
</execution>
</executions>
Expand Down

0 comments on commit 038cb9c

Please sign in to comment.