0

Trying to solve an issue with Proxy classes + native mode with Quarkus, and hitting a roadblock.

The docs outlining the tips for solving the issue don't specify how to add the additional build args with Gradle....

Reference docs: https://quarkus.io/guides/writing-native-applications-tips#managing-proxy-classes

The odd point being I found the following issue outlining an addition for Gradle, but no mention on the docs, and the command the issue recommends doesn't seem to work either (--additional-build-args)

https://github.com/quarkusio/quarkus/issues/3484

How does one pass the args to Graal?

Snappawapa
  • 1,697
  • 3
  • 20
  • 42

1 Answers1

0

The easiest way to is configure application.properties with all the additional setting you need.

For example you could have something like:

quarkus.native.additional-build-args=-H:IncludeResources=.*\\.jks,-H:EnableURLProtocols=http\\,https
geoand
  • 60,071
  • 24
  • 172
  • 190