Faced with the issue that NetBeans 8.2 doesn't support new JSF 2.3 tags for example, in the code snippet below:
<f:metadata>
<f:importConstants type="mypackage.MyClass" />
</f:metadata>
NetBeans highlights f:importConstants
with the following error: [The component library Jsf Core doesn't contain component importConstants].
It is fine to live without code completion, but as NB marks code as error - not sure how to set it to ignore such errors.
P.S. Does Eclipse support JSF 2.3? Maybe it is time to switch to Eclipse for a while until NB is fixed.
Thank you!
EDIT-1: this is a Maven Java Web Project in NetBeans, pom.xml has the following entry:
<dependency>
<groupId>org.glassfish</groupId>
<artifactId>javax.faces</artifactId>
<version>2.3.2</version>
<scope>provided</scope>
</dependency>