Skip to content
This repository has been archived by the owner on Jan 19, 2024. It is now read-only.

[Enhancement] Add support for Spring Boot 3 / add Jakarta-based artifact #145

Open
der-eismann opened this issue May 30, 2023 · 0 comments

Comments

@der-eismann
Copy link

Is your feature request related to a problem? Please describe
We have a Spring Boot application that uses the Salesforce SDK and would like to upgrade it to use Spring Boot 3. However the FuelSDK is still using javax dependencies from Java EE, while Spring Boot 3 explicitly requires Jakarta EE.

Describe the solution you'd like
querydsl for example can be used if you set a classifier in the POM like

        <dependency>
            <groupId>com.querydsl</groupId>
            <artifactId>querydsl-apt</artifactId>
            <classifier>jakarta</classifier>
        </dependency>

But I have no idea what needs to be done in this project to achieve that. I think the Eclipse Transformer project helps.

Describe alternatives you've considered
None

Additional context

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

1 participant