Disabling Forking for this Module

This commit is contained in:
Ali Dehghani 2020-06-15 19:56:49 +04:30
parent 5fbc94ae90
commit 226035ecb3
1 changed files with 11 additions and 0 deletions

View File

@ -73,6 +73,17 @@
<build>
<plugins>
<!-- Because we couldn't cope with multiple concurrent H2 instances -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
<configuration>
<forkCount>0</forkCount>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>properties-maven-plugin</artifactId>