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.

link|improve this question

67% accept rate
I know that question is really old, but did you find a solution ? (I mean not add an argument for the whole JVM but only for jetty) I think Cargo would do the trick, but I don't feel like adding another thing to my project... – Depado May 21 at 10:02
feedback

4 Answers

up vote 8 down vote accepted

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=...."
Windows: in shell (cmd.exe) type "set MAVEN_OPTS=..."

For example:
*on windows set MAVEN_OPTS="-Xmx1024m" to set heap space size of maven process to 1024mb*

link|improve this answer
Wouldn't that set it for the entire JVM run? Is there a way to get it to just affect the jetty that it starts? – BeepDog Sep 8 '11 at 15:28
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: MAVEN_OPTS='-Xmx256m -Xms10m' mvn clean jetty:run

Note that MAVEN_OPTS is an environment variable here, and not passed to the JVM (who wouldn't know what to do with it).

link|improve this answer
feedback

How about: mvn -DMAVEN_OPTS=-Xmx1024m jetty:run

link|improve this answer
feedback

On Linux/Unix

export MAVEN_OPTS="-Xmx256m" && mvn clean install jetty:run

will do the trick

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.