how to pass -Djava.library.path=... to quarkus dev #36750
Replies: 3 comments
-
I think you have to configure this option in the quarkusDev task in your build.gradle(.kts). |
Beta Was this translation helpful? Give feedback.
-
The order of the properties on the command line is also relevant for the gradle cli (https://docs.gradle.org/current/userguide/command_line_interface.html). I am not sure if this is also true for system properties. You could try I think it won't work either but you can give it a try. 😄 |
Beta Was this translation helpful? Give feedback.
-
Hi @mschorsch , thanks for the pointer. For some reason passing the argument to But, setting
|
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi all,
I need to start my application with a native library, using the
-Djava.library.path
parameter. thejava -jar
direct start works fine, but I also want to start the dev server with gradle.quarkus dev
orquarkus dev -Djava.library.path=...
leads toIs there any way I could make the dev server aware of my library?
Thank you!
--Kurt
Beta Was this translation helpful? Give feedback.
All reactions