scobb
1
The following Dep is not in MVN Repo, is required for the required Jakarta imports, is there an alternative I do not know about?
<dependency>
<groupId>jakarta.jcr</groupId>
<artifactId>jakarta.jcr-api</artifactId>
<version>2.0.0</version>
</dependency>
machak
2
JCR is not part of EE namespace but SE namespace and there is no jakarta alternative. (also replied to your ticket)
<dependency>
<groupId>javax.jcr</groupId>
<artifactId>jcr</artifactId>
<version>2.0</version>
</dependency>