Java Reference
In-Depth Information
On the other hand, you can choose to use the managed container option by setting
the corresponding profile into Maven's plugin properties:
Besides this, Arquillian needs to know where JBoss AS is installed so that it can
manage the lifecycle of the container using the startup script. You can configure the
JBOSS HOME application into the arquillian.xml file shown as follows:
<?xml version="1.0" encoding="UTF-8"?>
<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">
<defaultProtocol type="Servlet 3.0" />
<container qualifier="jboss" default="true">
<configuration>
<property
name="jbossHome">C:\jboss-as-7.1.1.Final</property>
</configuration>
</container>
Search WWH ::




Custom Search