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
non-varargs call of varargs method with inexact argument type for last parameter;
[ERROR] cast to java.lang.Object for a varargs call
[ERROR] cast to java.lang.Object[] for a non-varargs call and to suppress this warning.
This can be resolved by an Object cast as JaxrsUtil.iterableToString(";", (Object) headers)) in below files:
jaxrs-tck/src/main/java/ee/jakarta/tck/ws/rs/ee/rs/beanparam/BeanParamCommonClient.java
jaxrs-tck/src/main/java/ee/jakarta/tck/ws/rs/ee/rs/cookieparam/JAXRSClientIT.java.
Errors like below which also appeared as warnings first.
APPLICATION_SVG_XML in jakarta.ws.rs.core.MediaType has been deprecated and marked for removal
APPLICATION_SVG_XML_TYPE in jakarta.ws.rs.core.MediaType has been deprecated and marked for removal
Integer(int) in java.lang.Integer has been deprecated and marked for removal
after an error message : java.lang.NullPointerException: Cannot invoke "com.sun.tools.javac.code.Type.getThrownTypes()" because "tree.meth.type" is null
It looks like the issue is with JDK17.0.2 version which is also the Java 17 version used in Jenkins .
Locally the build passed when JDK 17.0.10 was used as it was suggested by James.
Apparently there seems to be no other JDK17 version available in Jenkins to resolve the build issue.
The text was updated successfully, but these errors were encountered:
TCK compilation error happening in JDK17 with the current main branch as run in https://ci.eclipse.org/rest/job/TCK_EFTL_build_and_stage/6/.
The TCK build passes with JDK21 with latest changes https://ci.eclipse.org/rest/job/TCK_EFTL_build_and_stage/7/.
The 2 types of issues are as below:
This can be resolved by an Object cast as JaxrsUtil.iterableToString(";", (Object) headers)) in below files:
jaxrs-tck/src/main/java/ee/jakarta/tck/ws/rs/ee/rs/beanparam/BeanParamCommonClient.java
jaxrs-tck/src/main/java/ee/jakarta/tck/ws/rs/ee/rs/cookieparam/JAXRSClientIT.java.
Errors like below which also appeared as warnings first.
after an error message :
java.lang.NullPointerException: Cannot invoke "com.sun.tools.javac.code.Type.getThrownTypes()" because "tree.meth.type" is null
It looks like the issue is with JDK17.0.2 version which is also the Java 17 version used in Jenkins .
Locally the build passed when JDK 17.0.10 was used as it was suggested by James.
Apparently there seems to be no other JDK17 version available in Jenkins to resolve the build issue.
The text was updated successfully, but these errors were encountered: