Skip to main content
deleted 55 characters in body; edited tags; edited title
Source Link
approxiblue
  • 7.2k
  • 16
  • 53
  • 59

maven jetty plugin - how How to control vmVM arguments for maven-jetty-plugin?

How to set vmargs for jetty runned from maven-jetty-plugin? How to set VM arguments for Jetty run from maven-jetty-plugin?

For example, I need for example to pass -Xmx argument-Xmx arguments to Jetty which run as maven-plugin (maven-jetty-plugin) by "mvn jetty:run"the mvn jetty:run command.

maven jetty plugin - how to control vm arguments?

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.

How to control VM arguments for maven-jetty-plugin?

How to set VM arguments for Jetty run from maven-jetty-plugin?

For example, I need to pass -Xmx arguments to Jetty run by the mvn jetty:run command.

edited tags
Link
cetnar
  • 9.4k
  • 2
  • 40
  • 45
My problem was caused by other thing so I removed text described which not work for me, but in fact it works properly (my fault). I let answer be here, because there is no similar question here on stackoverflow.
Source Link
Michal Bernhard
  • 3.9k
  • 4
  • 29
  • 38

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. Setting MAVEN_OPTS (eg.: "MAVEN_OPTS=-Xmx1024m") seems not working.

Since jetty is runned as a new java process I guess that MAVEN_OPTS is not considered (ie. maven not pass this arguments to newly created java processes). Note maven-jetty-plugin has set deamon mode to true.

How to set vmargs for jetty runned from maven-jetty-plugin?

I need to pass -Xmx argument to Jetty which run as maven-plugin (maven-jetty-plugin) by "mvn jetty:run" command. Setting MAVEN_OPTS (eg.: "MAVEN_OPTS=-Xmx1024m") seems not working.

Since jetty is runned as a new java process I guess that MAVEN_OPTS is not considered (ie. maven not pass this arguments to newly created java processes). Note maven-jetty-plugin has set deamon mode to true.

How to set vmargs for jetty runned from maven-jetty-plugin?

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.

Source Link
Michal Bernhard
  • 3.9k
  • 4
  • 29
  • 38
Loading