You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To test #36118 we need to be able to exclude the JDK's java.net.http.HttpClient class in tests. Such an exclusion would simulate running on a JVM that does not include the java.net.http module. We can approximate this well enough for testing purposes by excluding the java.net.http package:
@ClassPathExclusions(packages = "java.net.http")
The text was updated successfully, but these errors were encountered:
To test #36118 we need to be able to exclude the JDK's
java.net.http.HttpClient
class in tests. Such an exclusion would simulate running on a JVM that does not include thejava.net.http
module. We can approximate this well enough for testing purposes by excluding thejava.net.http
package:The text was updated successfully, but these errors were encountered: