Skip to content

Instantly share code, notes, and snippets.

@tremes
Created June 25, 2013 08:46
Show Gist options
  • Save tremes/5856967 to your computer and use it in GitHub Desktop.
Save tremes/5856967 to your computer and use it in GitHub Desktop.
arquillian.xml
<?xml version="1.0" encoding="UTF-8"?>
<arquillian xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://jboss.org/schema/arquillian"
xsi:schemaLocation="http://jboss.org/schema/arquillian http://jboss.org/schema/arquillian/arquillian_1_0.xsd">
<engine>
<property name="deploymentExportPath">target/</property>
</engine>
<container qualifier="jboss" default="true">
<configuration>
<!-- These properties are only valid for arquillian managed container,
but don't cause a problem for the remote container, so they
can be left in. -->
<!-- To use jacoco, set jacoco.agent system property to something like
-javaagent:/path/to/jacocoagent.jar=append=true,destfile=/path/to/output/jacoco.exec -->
<property name="javaVmArguments">-Xmx1024m -XX:MaxPermSize=1024m ${jacoco.agent}</property>
<property name="serverConfig">standalone.xml</property>
<!-- If jbossHome property is not set, the JBOSS_HOME environment variable is used -->
<!--<property name="jbossHome">/path/to/jboss/as</property>-->
</configuration>
</container>
</arquillian>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment