Skip to content

Commit

Permalink
Ensure forks use new JVM
Browse files Browse the repository at this point in the history
  • Loading branch information
corneil committed Mar 22, 2024
1 parent 27d8a64 commit cff8ef4
Showing 1 changed file with 3 additions and 11 deletions.
14 changes: 3 additions & 11 deletions spring-cloud-dataflow-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,7 @@
<configuration>
<threadCount>1</threadCount>
<forkCount>1</forkCount>
<reuseForks>false</reuseForks>
</configuration>
<executions>
<execution>
Expand Down Expand Up @@ -301,22 +302,13 @@
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<threadCount>1</threadCount>
<forkCount>1</forkCount>
<skipTests>true</skipTests>
<failIfNoTests>false</failIfNoTests>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<forkCount>1</forkCount>
<reuseForks>false</reuseForks>
<includes>
<include>**/*IT.java</include>
</includes>
Expand Down

0 comments on commit cff8ef4

Please sign in to comment.