I've created new Jakarta Faces project and my purpose is using Jakarta EE 10.
I added this dependency to my pom.xml
file:
<dependency>
<groupId>jakarta.platform</groupId>
<artifactId>jakarta.jakartaee-api</artifactId>
<version>10.0.0</version>
<scope>provided</scope>
</dependency>
But I've got error:
Missing artifact jakarta.platform:jakarta.jakartaee-api:jar:10.0.0
My config is:
- Java version "17" 2021-09-14 LTS
- Apache-Maven-3.8.2
- Eclipse IDE Version: 2022-03 (4.23.0)
and the project xml files:
faces-config.xml
version="4.0"web.xml
version="6.0"beans.xml
version="4.0"persistence.xml
version="3.1"
What is the problem and how can I fix that?
I also searched MVN Repository for the latest version of jakarta.jakartaee-api
and new version of that dependency is 9.1.0
. So, how can Maven find this version 10.0.0
?