2

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?

eastwater
  • 4,624
  • 9
  • 49
  • 118

1 Answers1

2

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.

BalusC
  • 1,082,665
  • 372
  • 3,610
  • 3,555
  • Is this artifact API or impl? Thanks – eastwater Aug 02 '22 at 10:32
  • Mojarra is the impl. JSF is the API. You specifically asked for Mojarra :) This specific impl artifact has the API also bundled. – BalusC Aug 02 '22 at 11:33
  • @BalusC can you please check some of my recent jsf questions regarding upgrading a JSF application. not getting any leads from anywhere. kind of stuck! :( would really appreciate some guidance. Thanks! – Vicky Aug 08 '22 at 23:01