-
Hi everyone! I am developing a few microservices with Quarkus. And I'd like them to reuse a bit of functionality including:
I don't need that library to be a Quarkus app of its own - it won't be deployed and ran individually, it's just going to be packaged inside other projects. My microservices don't use GraalVM or any AOT whatsoever. So what's the best way to implement it? Is it as a quarkus extension? Or would I lose anything if I just implement it as a (Maven) library? In the latter case, what would be the way to access the Jakarta EE / MicroProfile implementations? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi, Not sure I understand your question: these libraries are for use by Quarkus projects alone or you plan to share them with other non-Quarkus projects? If it's for Quarkus projects only:
If you plan to share your libraries with non Quarkus projects:
If it doesn't answer your question, it probably requires some clarifications :). |
Beta Was this translation helpful? Give feedback.
Hi,
Not sure I understand your question: these libraries are for use by Quarkus projects alone or you plan to share them with other non-Quarkus projects?
If it's for Quarkus projects only:
quarkus-arc
,quarkus-rest-client
(or the reactive one if you're using RESTEasy Reactive),quarkus-jackson
)If you plan to share your libraries with non Quarkus projects: