add a profile to run all tests even those disable with some jdks
Signed-off-by: olivier lamy <oliver.lamy@gmail.com>
This commit is contained in:
parent
977fb521a0
commit
5f2306c9cd
|
@ -630,5 +630,28 @@
|
|||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<!-- if you want to run test even with jdk10/11 -->
|
||||
<profile>
|
||||
<id>alltests</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>alltests</name>
|
||||
<value>true</value>
|
||||
</property>
|
||||
</activation>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<excludes>
|
||||
<exclude>FOOBAR</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
||||
|
|
|
@ -177,5 +177,28 @@
|
|||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<!-- if you want to run test even with jdk10/11 -->
|
||||
<profile>
|
||||
<id>alltests</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>alltests</name>
|
||||
<value>true</value>
|
||||
</property>
|
||||
</activation>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<excludes>
|
||||
<exclude>FOOBAR</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
||||
|
|
Loading…
Reference in New Issue