This content has been marked as final.
Show 1 reply
-
1. Re: Missing JSF 2.2 taglib files in the implementation JARs
bonanzaone Nov 28, 2017 10:40 AM (in response to evandro.pomatti)I've opened an issue on JIRA: [WFLY-9579] Missing JSF 2.2 taglib files in the implementation JARs - JBoss Issue Tracker
We are now on SP4 but the taglibs are not there (shipped with latest WildFly).
I've found a away to get rid of the warning but the no code suggestions are made.
https://stackoverflow.com/a/42415463/3231778
Is there anything wrong with my Maven declaration? Should I use another lib?
<dependency>
<groupId>org.jboss.spec.javax.faces</groupId>
<artifactId>jboss-jsf-api_2.2_spec</artifactId>
<version>2.2.13</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.sun.faces</groupId>
<artifactId>jsf-impl</artifactId>
<version>2.2.13.SP4</version>
<scope>provided</scope>
</dependency>