Brief Summary
If I download a project with "Core Profile" it won't compile.
I got this errror:
[ERROR] Some problems were encountered while processing the POMs:
'dependencies.dependency.version' for jakarta.platform:jakarta.jakartaee-core-api:jar is missing. @ line 35, column 21
I fixed this error by adding a version to the maven entry:
<dependency>
<groupId>jakarta.platform</groupId>
<artifactId>jakarta.jakartaee-core-api</artifactId>
<scope>provided</scope>
<version>10.0.0</version>
</dependency>
Maybe the version is missing from the BOM file.
Expected Outcome
The project should compile without errors.
Current Outcome
[ERROR] Some problems were encountered while processing the POMs:
'dependencies.dependency.version' for jakarta.platform:jakarta.jakartaee-core-api:jar is missing. @ line 35, column 21
Steps to Reproduce
Starter Configuration:
1 - Project details - Maven
2 - Project configuration - Java 21
3 - Jakarta EE - Jakarta EE 10, Core Profile
4 - MicroProfile - Empty
5 - Payara Platform - Payara Server, 6.2023.12
6 - Advance Configuration - None
Brief Summary
If I download a project with "Core Profile" it won't compile.
I got this errror:
I fixed this error by adding a version to the maven entry:
Maybe the version is missing from the BOM file.
Expected Outcome
The project should compile without errors.
Current Outcome
[ERROR] Some problems were encountered while processing the POMs:
'dependencies.dependency.version' for jakarta.platform:jakarta.jakartaee-core-api:jar is missing. @ line 35, column 21
Steps to Reproduce
Starter Configuration:
1 - Project details - Maven
2 - Project configuration - Java 21
3 - Jakarta EE - Jakarta EE 10, Core Profile
4 - MicroProfile - Empty
5 - Payara Platform - Payara Server, 6.2023.12
6 - Advance Configuration - None