payara / ecosystem-support

Placeholder repository to handle community requests for the Payara Platform ecosystem tools
3 stars 2 forks source link

Bug Report: Payara Starter with Core Profile won't compile/FISH-8274 #84

Open brunogptavares opened 5 months ago

brunogptavares commented 5 months ago

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

shub8968 commented 5 months ago

I've escalated this to the platform Development team as FISH-8274