the third profile

This commit is contained in:
Eugen Paraschiv 2018-11-22 16:19:26 +02:00
parent 4d3b4ca3f0
commit 3928c89559
1 changed files with 40 additions and 0 deletions

40
pom.xml
View File

@ -738,6 +738,46 @@
<module>helidon</module> <module>helidon</module>
</modules> </modules>
</profile>
<profile>
<id>default-third</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
<configuration>
<forkCount>3</forkCount>
<reuseForks>true</reuseForks>
<excludes>
<exclude>**/*IntegrationTest.java</exclude>
<exclude>**/*IntTest.java</exclude>
<exclude>**/*LongRunningUnitTest.java</exclude>
<exclude>**/*ManualTest.java</exclude>
<exclude>**/*JdbcTest.java</exclude>
<exclude>**/*LiveTest.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
<modules>
<module>parent-boot-1</module>
<module>parent-boot-2</module>
<module>parent-spring-4</module>
<module>parent-spring-5</module>
<module>parent-java</module>
<module>parent-kotlin</module>
<module>testing-modules/gatling</module>
<module>geotools</module>
</modules>
</profile> </profile>
<profile> <profile>