Arquillian Container JBoss AS 1.0.0.CR3 Released

The Arquillian team is proud to announce the 1.0.0.CR3 release of the Arquillian Container JBoss AS component!

Some of the highlights in this release

JavaHome configuration option now default to the Arquillian running JVM

Add configuration support for portSet to JBoss AS 5.1/6 Managed containers

arquillian.xml
<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">

  <container qualifier="jboss">
    <property name="portSet">ports-01</property>
  </container>

</arquillian>

Setting the portSet will automatically set the http and rmi ports to be use based on the pre defined sets in the JBoss AS configuration.

Add configuration support for partition to JBoss AS 4.2/5.1/6 Managed containers

arquillian.xml
<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">

  <group qualifier="cluster">
    <container qualifier="jboss-1">
      <property name="partition">X-1</property>
    </container>
    <container qualifier="jboss-2">
      <property name="partition">X-1</property>
    </container>
  </group>

</arquillian>

Using the same partition id on a group of containers defined in arquillian.xml will allow them to form a cluster.

What is Arquillian?

Arquillian is open source software that empowers you to test JVM-based applications more effectively. Created to defend the software galaxy from bugs, Arquillian brings your test to the runtime so you can focus on testing your application's behavior rather than managing the runtime. Using Arquillian, you can develop a comprehensive suite of tests from the convenience of your IDE and run them in any IDE, build tool or continuous integration environment.

Release details

Component Arquillian Container JBoss AS
Modules
Version 1.0.0.CR3 view tag
Release date 2012-02-23
Released by Aslak Knutsen
Compiled against

Published artifacts org.jboss.arquillian.container

  • org.jboss.arquillian.container » arquillian-jbossas-managed-4.2 jar javadoc pom
  • org.jboss.arquillian.container » arquillian-jbossas-remote-4.2 jar javadoc pom
  • org.jboss.arquillian.container » arquillian-jbossas-remote-5 jar javadoc pom
  • org.jboss.arquillian.container » arquillian-jbossas-managed-5.1 jar javadoc pom
  • org.jboss.arquillian.container » arquillian-jbossas-remote-5.1 jar javadoc pom
  • org.jboss.arquillian.container » arquillian-jbossas-embedded-6 jar javadoc pom
  • org.jboss.arquillian.container » arquillian-jbossas-managed-6 jar javadoc pom
  • org.jboss.arquillian.container » arquillian-jbossas-remote-6 jar javadoc pom

Release notes and resolved issues 4

Small bug fix

Feature Request
  • ARQ-476 - Support portOffset in JBoss ContainerConfiguration
  • ARQ-717 - JBoss AS managed containers should support setting partition
  • ARQ-744 - All Managed containers should be able to read JAVA_HOME from current JVM if not defined

Thanks to the following list of contributors: Aslak Knutsen, Davide D'alto, Marek Schmidt