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.
|
|
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: Update (01.04.2013) Pass it directly to Jetty Matthew Farwell (please upvote his answer to give him a credit) comes with solution of using forked jvm process to run jetty which is new feature of jetty plugin - see jetty maven plugin wiki page This is better solution as the former running inside same jvm processs as maven (thus share memory). |
|||||
|
|
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 |
|||
|
|
|
With more recent versions of the maven-jetty-plugin, you can use For more information, see: jetty:run-forked : Running an unassembled webapp in a separate jvm. I think the original issue was Starting Jetty in separate JVM. |
|||
|
|
|
How about: |
|||
|
|
|
On Linux/Unix
will do the trick |
|||
|
|
|
The plugin allows you to specify jvmArgs like this:
|
|||
|