I am planning to use GraalVM's native-image
tools to package an enterprise application. I've heard that they get packaged into single executable files which would not suit my use case. My application is a pretty large enterprise application which I would like to package into a one-directory application that contains all the dll
s and the libraries packaged in. I want to package it similar to how in pyinstaller
we can use the --onedir
option to package into a single directory. Could anyone please specify clearly how to achieve this because I do not seem to get my answer even after hours of research.
PS: sorry for my bad english (if it was bad)