Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don't run rest-client TCK Timeout*Tests on Java 18 #21244

Merged
merged 1 commit into from
Nov 6, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions tcks/microprofile-rest-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -227,5 +227,28 @@
</plugins>
</build>
</profile>
<profile>
<id>jdk18-workarounds</id>
<activation>
<jdk>[18,)</jdk>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<executions>
<!-- "unbind" the JDK16-17 workaround which is based on jdk.net.usePlainSocketImpl
because that property has been removed in Java 18: https://bugs.openjdk.java.net/browse/JDK-8253119
see also: https://github.com/quarkusio/quarkus/pull/19559#issuecomment-932987301 -->
<execution>
<id>jdk16-plain-socket-workaround</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>