Issue with jakarta API dependency updating to BR 16.0.0 from 15.7.3

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>

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>