-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharquillian.xml
24 lines (20 loc) · 1.05 KB
/
arquillian.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<arquillian xmlns="http://jboss.org/schema/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">
<!-- Force the use of the Servlet 3.0 protocol with all containers, as it
is the most mature -->
<defaultProtocol type="Servlet 3.0" >
<property name="host">127.0.0.1</property>
</defaultProtocol>
<!-- Example configuration for a remote WildFly instance -->
<container qualifier="jboss" default="true">
<!-- By default, arquillian will use the JBOSS_HOME environment variable.
Alternatively, the configuration below can be uncommented. -->
<configuration>
<property name="jbossHome">/home/mbertuzzi/workspace/jboss-eap-7.3</property>
<property name="javaHome">/usr/lib/jvm/jre-1.8.0</property>
<property name="allowConnectingToRunningServer">true</property>
</configuration>
</container>
</arquillian>