Skip to content

Commit

Permalink
[RESTEASY-3165] Ignore the JaxrsAsyncTest in resteasy-netty4 on CI ru…
Browse files Browse the repository at this point in the history
…ns for Windows.

https://issues.redhat.com/browse/RESTEASY-3165
Signed-off-by: James R. Perkins <jperkins@redhat.com>
  • Loading branch information
jamezp committed Jul 11, 2022
1 parent 97f0d2c commit 7780ffd
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions server-adapters/resteasy-netty4/pom.xml
Expand Up @@ -107,6 +107,30 @@
</dependency>
</dependencies>
<profiles>
<profile>
<id>github-actions</id>
<activation>
<property>
<name>github.actions</name>
</property>
<os>
<family>windows</family>
</os>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/JaxrsAsyncTest.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>i18n</id>
<activation>
Expand Down

0 comments on commit 7780ffd

Please sign in to comment.