Created

Embed URL

HTTPS clone URL

SSH clone URL

You can clone with HTTPS or SSH.

Download Gist
View arquillian.xml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
<?xml version="1.0"?>
 
<arquillian xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://jboss.org/schema/arquillian http://jboss.org/schema/arquillian/arquillian-1.0.xsd">
 
<engine>
<property name="deploymentExportPath">/tmp</property>
<property name="maxDeploymentsBeforeRestart">${arquillian.max.deploys}</property>
</engine>
 
<container>
<configuration qualifier="jbossas" default="true">
<property name="profileName">default</property>
<property name="bindAddress">127.0.0.1</property>
<property name="httpPort">8080</property>
<property name="jbossHome">${integ.dist.dir}/jboss</property>
<property name="javaVmArguments">-Xmx${arquillian.max.heap} -XX:MaxPermSize=256m -XX:+UseConcMarkSweepGC -XX:+UseParNewGC -XX:+CMSClassUnloadingEnabled -Djruby_home.env.ignore=true -Dgem.path=default</property>
</configuration>
</container>
 
</arquillian>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Something went wrong with that request. Please try again.