I am creating an executable jar for my application using maven-assembly-plugin
which will include all my dependencies in it. I also want to set few JVM arguments for this to increase the memory allocated to it while running the jar.
I do not want the end user to go to command prompt and set these values, I want to be set inside the jar, so that the user can just run my jar directly.
Any help would be appreciated.
Thanks in advance.