Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Split cargo args across multiple lines
Browse files Browse the repository at this point in the history
  • Loading branch information
seanf committed Sep 26, 2013
1 parent 0c1a44b commit d194a7c
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions functional-test/pom.xml
Expand Up @@ -60,7 +60,10 @@
<zanata.database.backup>${project.build.directory}/zanata.database.backup.sql</zanata.database.backup>

<!-- on jenkins, this needs to be set to empty - so that cargo can shutdown. see http://stackoverflow.com/questions/1096642/tomcat-failed-to-shutdown -->
<cargo.debug.jvm.args> -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8787 -Xnoagent -Djava.compiler=NONE</cargo.debug.jvm.args>
<cargo.debug.jvm.args>
-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8787
-Xnoagent -Djava.compiler=NONE
</cargo.debug.jvm.args>
<!-- this property can be used to control what test needs to be run by failsafe -->
<include.test.patterns>**/AggregateTestSuite.java</include.test.patterns>
<document.storage.directory>${project.build.directory}/zanata-documents</document.storage.directory>
Expand Down Expand Up @@ -311,7 +314,9 @@

<cargo.jvmargs>
<!-- NB: JDom parser doesn't like comments starting with '-' -->
-XX:PermSize=512m -XX:MaxPermSize=1024 -XX:+UseConcMarkSweepGC -XX:+CMSClassUnloadingEnabled ${cargo.debug.jvm.args}
-XX:PermSize=512m -XX:MaxPermSize=1024
-XX:+UseConcMarkSweepGC -XX:+CMSClassUnloadingEnabled
${cargo.debug.jvm.args}
</cargo.jvmargs>
</properties>
</configuration>
Expand Down

0 comments on commit d194a7c

Please sign in to comment.