Hello,
I'm trying to upgrade our Maven dependency of JSF and I wanted to review the release notes.... but I can't seem to find them.
Our dependency:
<dependency>
<groupId>com.sun.faces</groupId>
<artifactId>jsf-api</artifactId>
<version>2.2.10</version>
</dependency>
Now there is a 2.2.18 you can find on MVN Repository but there is no documentation.
I can see that Mojarra has better documentation but I'm out of my element here overall. Mojarra is up to 2.3 but uses a different groupId and artifactId:
<dependency>
<groupId>javax.faces</groupId>
<artifactId>javax.faces-api</artifactId>
<version>2.3</version>
<scope>provided</scope>
</dependency>
Did Oracle migrate away from the com.sun.faces to javax.faces or something? Why can't I find any release notes on this or any documentation at all?
I would really appreciate any advice, thanks.