I followed the Quarkus project example for Lambda + native-image here and I was able to get that to work. However now I'm trying to extend it by adding my own code to it which uses some reflection in the library dependencies. I'm trying to run the Quarkus unit tests to alongside the native-image tracing agent to capture the reflection-config.json however I'm unable to do that. I've tried the below approach:
mvn clean package -Djvm.args="-agentlib:native-image-agent=config-output-dir=META-INF/native-image"
Runs the unit test but I don't see anything generated for the tracing agent outputs.
Tried running the following from Oleg's answer here
mvn quarkus:dev -Ddebug=false -Djvm.args="-agentlib:native-image-agent=config-output-dir=native-image-config"
And didn't see any outputs either.