Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to pick up any library from the Maven repository and use into Quarkus app

Tags:

quarkus

I am new to the Quarkus, Is it possible to pick up any library from the Maven repository and use into Quarkus app. or i can only use these Code.

Is there any impact on performance?

like image 864
Lalit Jeevanlal Kohli Avatar asked Sep 20 '25 02:09

Lalit Jeevanlal Kohli


1 Answers

If you plan on building a Java app deployed on the JVM, you should be able to use any library.

Things are a bit different if you plan to build a native executable. In this case, a library might need some additional metadata for GraalVM. That's one of the things we do in our Quarkus extensions.

like image 192
Guillaume Smet Avatar answered Sep 23 '25 07:09

Guillaume Smet