Arquillian Container GlassFish 1.0.0.CR3 Released

Since we wrote this post we didn't laze around. Check our latest announcement.

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

Some of the highlights in this release

  • Support for a managed GlassFish container.
    With this release, you can have Arquillian manage the lifecycle of the GlassFish container.
  • Support for GlassFish 3.1.2.
    The release enables you to use Arquillian against a remote or a managed GlassFish 3.1.2 container.
  • The sunResourcesXml property for the embedded GlassFish container, is now deprecated. It is preserved for backward compatibility. You are encouraged to use the resourcesXml property instead.

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 GlassFish
Modules
Version 1.0.0.CR3 view tag
Release date 2012-03-15
Released by Aslak Knutsen
Compiled against

Published artifacts org.jboss.arquillian.container

  • org.jboss.arquillian.container » arquillian-glassfish-common jar javadoc pom
  • org.jboss.arquillian.container » arquillian-glassfish-managed-3.1 jar javadoc pom
  • org.jboss.arquillian.container » arquillian-glassfish-remote-3.1 jar javadoc pom
  • org.jboss.arquillian.container » arquillian-glassfish-embedded-3.1 jar javadoc pom

Release notes and resolved issues 7

GlassFish Managed Container

Enhancement
  • ARQ-780 - Change configuration property sunResourcesXml to glassfishResourcesXml
Feature Request
  • ARQ-322 - Implement a GlassFish 3.1 managed container adapter
Bug
  • ARQ-569 - Archive for remote GF-3.1 should not be saved to disk prior to deployment
  • ARQ-624 - Initialization of the extension for remote Glassfish fails when the remote domain configuration does not match the expected configuration
  • ARQ-643 - Arquillian fails to execute in-container tests when the serverHttps property is enabled for remote Glassfish containers
  • ARQ-658 - Deployment of an EnterpriseArchive onto remote GlassFish fails, when the contextRoot recorded in GlassFish, does not start with a slash

Thanks to the following list of contributors: Vineet Reynolds, Aslak Knutsen, Dan Allen, Pedro Kowalski

Arquillian OSGi 1.0.2.Final Released

Since we wrote this post we didn't laze around. Check our latest announcement.

The Arquillian team is proud to announce the 1.0.2.Final release of the Arquillian OSGi component!

What is Arquillian OSGi?

ShrinkWrap is the simplest way to create archives in Java. Using the fluent and intuitive ShrinkWrap API, developers may assemble JARs, WARs, and EARs to be deployed directly by Arquillian during testing.

Release details

Component Arquillian OSGi
Modules
Version 1.0.2.Final view tag
Release date 2012-03-01
Released by Thomas Diesler
Compiled against

Published artifacts org.jboss.arquillian.testenricher

  • org.jboss.arquillian.testenricher » arquillian-testenricher-osgi jar javadoc pom
  • org.jboss.arquillian.protocol » arquillian-protocol-osgi jar javadoc pom
  • org.jboss.arquillian.container » arquillian-container-osgi jar javadoc pom
  • org.jboss.arquillian.container » arquillian-container-osgi-embedded jar javadoc pom
  • org.jboss.arquillian.container » arquillian-container-osgi-remote jar javadoc pom

Thanks to the following list of contributors: Thomas Diesler

Arquillian OSGi 1.0.1 Released

Since we wrote this post we didn't laze around. Check our latest announcement.

The Arquillian team is proud to announce the 1.0.1 release of the Arquillian OSGi component!

What is Arquillian OSGi?

ShrinkWrap is the simplest way to create archives in Java. Using the fluent and intuitive ShrinkWrap API, developers may assemble JARs, WARs, and EARs to be deployed directly by Arquillian during testing.

Release details

Component Arquillian OSGi
Modules
Version 1.0.1 view tag
Release date 2012-02-29
Released by Thomas Diesler
Compiled against

Published artifacts org.jboss.arquillian.testenricher

  • org.jboss.arquillian.testenricher » arquillian-testenricher-osgi jar javadoc pom
  • org.jboss.arquillian.protocol » arquillian-protocol-osgi jar javadoc pom
  • org.jboss.arquillian.container » arquillian-container-osgi jar javadoc pom
  • org.jboss.arquillian.container » arquillian-container-osgi-embedded jar javadoc pom
  • org.jboss.arquillian.container » arquillian-container-osgi-remote jar javadoc pom

Thanks to the following list of contributors: Thomas Diesler

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

Arquillian Tomcat Container 1.0.0.CR3 Released

Since we wrote this post we didn't laze around. Check our latest announcement.

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

Some of the highlights in this release

JavaHome configuration option now default to the Arquillian running JVM

Changed to use ISO-8859-1 to encode the authentication request against the Tomcat Containers

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 Tomcat Container
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-tomcat-common jar javadoc pom
  • org.jboss.arquillian.container » arquillian-tomcat-managed-5.5 jar javadoc pom
  • org.jboss.arquillian.container » arquillian-tomcat-embedded-6 jar javadoc pom
  • org.jboss.arquillian.container » arquillian-tomcat-remote-6 jar javadoc pom
  • org.jboss.arquillian.container » arquillian-tomcat-managed-6 jar javadoc pom
  • org.jboss.arquillian.container » arquillian-tomcat-embedded-7 jar javadoc pom
  • org.jboss.arquillian.container » arquillian-tomcat-managed-7 jar javadoc pom

Release notes and resolved issues 3

Small bug fix

Feature Request
  • ARQ-744 - All Managed containers should be able to read JAVA_HOME from current JVM if not defined
Bug
  • ARQ-630 - The default charset is used to encode the HTTP BASIC AUTH credentials string into a sequence of bytes. ISO-8859-1 should be used for Tomcat

Thanks to the following list of contributors: Aslak Knutsen, Vineet Reynolds