Where is maven respository for jsf mojarra 2.3.18?
The maven center has mojarra 2.4 that does not exist on github mojarra project. but the maven center does not have version 2.3.18 that is the latest release for 2.3.x. where is the version 2.4 coming from on the maven center?
CodePudding user response:
It has moved from the javax.faces
artifact to the jakarta.faces
artifact. You need to update the <artifactId>
accordingly.
<dependency>
<groupId>org.glassfish</groupId>
<artifactId>jakarta.faces</artifactId>
<version>2.3.18</version>
</dependency>
Noted should be that Mojarra 2.4 should absolutely not be used.