How to set vmargs for jetty runned from maven-jetty-plugin?
I need for example to pass -Xmx argument to Jetty which run as maven-plugin (maven-jetty-plugin) by "mvn jetty:run" command.
feedback
|
|
Eviroment variable MAVEN_OPTS is the answer. The string content of MAVEN_OPTS variable is passed to jvm (java.exe). Linux: in shell type "export MAVEN_OPTS=...." For example: | |||
feedback
|
|
It seems like your current approach is correct - when running jetty through maven, jetty is a thread inside the maven process. So increasing maven's heap will increase jetty's heap. How are you setting MAVEN_OPTS? One example I found looks like this: Note that | |||
|
feedback
|
|
On Linux/Unix
will do the trick | |||
|
feedback
|