diff options
author | Brett Porter <brett@apache.org> | 2011-04-13 03:05:17 +0000 |
---|---|---|
committer | Brett Porter <brett@apache.org> | 2011-04-13 03:05:17 +0000 |
commit | 1b9d78a7695b206869eefb0a276e01545daccce8 (patch) | |
tree | a6336945ec18825cc16668615fb250ba5b242ac5 | |
parent | e064cd7f676d6d8a70b5aa76f427ebf2b0c4dcba (diff) | |
download | archiva-1b9d78a7695b206869eefb0a276e01545daccce8.tar.gz archiva-1b9d78a7695b206869eefb0a276e01545daccce8.zip |
give Cargo some more memory to run the application
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1091632 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | archiva-modules/archiva-web/archiva-webapp-test/pom.xml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/archiva-modules/archiva-web/archiva-webapp-test/pom.xml b/archiva-modules/archiva-web/archiva-webapp-test/pom.xml index 8fb377461..9b8089451 100644 --- a/archiva-modules/archiva-web/archiva-webapp-test/pom.xml +++ b/archiva-modules/archiva-web/archiva-webapp-test/pom.xml @@ -507,9 +507,11 @@ <profile> <id>debug</id> <properties> + <!-- TODO: review how appropriate the memory settings are - should work with less --> <cargo.jvm.args> -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=${cargo.debug.port} + <cargo.jvm.args>-Xmx512m -XX:MaxPermSize=256m</cargo.jvm.args> </cargo.jvm.args> <cargo.debug.port>8000</cargo.debug.port> <!-- wait an unusual amount of time (1hr) to allow debugging to occur --> @@ -522,5 +524,7 @@ <cargo.wait>false</cargo.wait> <cargo.install.dir>cargo-installs</cargo.install.dir> <maxWaitTimeInMs>60000</maxWaitTimeInMs> + <!-- TODO: review how appropriate the memory settings are - should work with less --> + <cargo.jvm.args>-Xmx512m -XX:MaxPermSize=256m</cargo.jvm.args> </properties> </project> |