Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions foundations/foundation-vertx/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,21 @@
<artifactId>foundation-test-scaffolding</artifactId>
</dependency>
</dependencies>

<!--
Disable surefire forking for vertex, it causes the UT to fail
on some platforms(mainly linux).
-->
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<forkCount>1</forkCount>
<reuseForks>false</reuseForks>
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

not a good idea
should fix the root cause.

</configuration>
</plugin>
</plugins>
</build>
</project>