mirror of https://github.com/apache/activemq.git
Excluding some tests which hang Jenkins on Windows and Solaris, see AMQ-5270
This commit is contained in:
parent
0709c2cc1d
commit
2b53036b27
|
@ -176,5 +176,50 @@
|
|||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>activemq.tests.windows.excludes</id>
|
||||
<activation>
|
||||
<os>
|
||||
<family>Windows</family>
|
||||
</os>
|
||||
</activation>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<excludes combine.children="append">
|
||||
<exclude>**/JoramJmsTest.*</exclude>
|
||||
<exclude>**/JoramJmsNioTest.*</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>activemq.tests.solaris.excludes</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>os.name</name>
|
||||
<value>SunOS</value>
|
||||
</property>
|
||||
</activation>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<excludes combine.children="append">
|
||||
<exclude>**/JoramJmsTest.*</exclude>
|
||||
<exclude>**/JMSClientSslTest.*</exclude>
|
||||
<exclude>**/JMSClientNioTest.*</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
|
||||
</profiles>
|
||||
</project>
|
||||
|
|
Loading…
Reference in New Issue