arquillian.xml
855 Bytes
<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">
<!-- Sets the protocol which is how Arquillian talks and executes the tests inside the container -->
<defaultProtocol type="Servlet 3.0" />
<!-- Configuration to be used when the WidlFly remote profile is active -->
<container qualifier="wildfly-remote" default="true">
<configuration>
<property name="managementAddress">localhost</property>
<property name="managementPort">9990</property>
<property name="username">admin</property>
<property name="password">Admin</property>
</configuration>
</container>
</arquillian>