Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where is maven respository for jsf mojarra 2.3.18?

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?

like image 332
eastwater Avatar asked Nov 28 '25 12:11

eastwater


1 Answers

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.

like image 195
BalusC Avatar answered Nov 30 '25 04:11

BalusC