5 Replies Latest reply on Aug 31, 2010 6:20 PM by dan.j.allen

    jboss:jbossHome not honoured by arquillian

    msreekanth

      I just found that the container configuration specified in the arquillian.xml is not honoured by arquillian.I am trying the introductory samples.I have made changes to the default arquillian.xml file .

       

      My arquillian files looks like:

      <arquillian xmlns="http://jboss.com/arquillian" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xmlns:jboss="urn:arq:org.jboss.arquillian.container.jbossas.remote_6_0 ">
          <engine>
              <maxDeploymentsBeforeRestart>20</maxDeploymentsBeforeRestart>
          </engine>
          <jboss:container>
              <jboss:jbossHome>/space/Sreekanth/servers/jboss/jboss-6.0.0.20100721-M4</jboss:jbossHome>
              <jboss:javaHome>/space/Sreekanth/java/jdk1.6.0_20</jboss:javaHome>
              <jboss:profileName>default</jboss:profileName>
              <jboss:bindAddress>localhost</jboss:bindAddress>
              <jboss:httpPort>8080</jboss:httpPort>
              <jboss:javaVmArguments>-Xmx512m -XX:MaxPermSize=256m</jboss:javaVmArguments>
          </jboss:container>
      </arquillian>

       

      I started running the tests using mvn clean test -Pjbossas-remote-6.

       

      Now the tests run fine even though my jboss running is located at /space/Sreekanth/servers/jboss-6.0.0.20100429-M3 .So my question is Is that property "jboss:jbossHome" not read by the run time?