I am currently migrating our project to WF27 (27.0.1.Final) and jakartaEE10.
<dependency>
<groupId>org.wildfly.bom</groupId>
<artifactId>wildfly-ee</artifactId>
<version>27.0.1.Final</version>
<scope>import</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.wildfly.bom</groupId>
<artifactId>wildfly-ee-with-tools</artifactId>
<version>27.0.1.Final</version>
<scope>import</scope>
<type>pom</type>
</dependency>
together with:
<dependency>
<groupId>jakarta.platform</groupId>
<artifactId>jakarta.jakartaee-api</artifactId>
<version>${jakartaee-platform.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
We are getting errors for:
Failure to find jakarta.mail:jakarta.mail-api:jar:2.1.1.jbossorg-1
Failure to find jakarta.websocket:jakarta.websocket-api:jar:2.1.0-jbossorg-2
Failure to find jakarta.websocket:jakarta.websocket-client-api:jar:2.1.0-jbossorg-2
Failure to find jakarta.activation:jakarta.activation-api:jar:2.1.1.jbossorg-1
Checking in maven central there are no jbossorg versions. I tried to change the versions in wildfly-ee BOM by removing ".jbossorg-" and it worked.
What is the proper solution here? Should there be a change in wildfly-ee BOM versions for the above dependencies?
Br,
Denis