Arquillian Container GlassFish 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 Container GlassFish component!

Some of the highlights in this release

Ability to define wait time before connecting to the container

In some cases you might want to define wait time before trying to connect to the GlassFish container. For this purpose we have introduce simple configuration. Thanks Ankur Kathuria for helping out.

arquillian.xml
 <container qualifier="glassfish" default="true">
  <configuration>
    <property name="waitTimeMs">200</property>
    <property name="retries">5</property>
  </configuration>
</container>

  • waitTimeMs defines how many miliseconds Arquillian will wait before trying to connect to the container
  • retries defines how many attempts should be made with waitTimeMs intervals

Minor bug fixes

Thanks to Mirko Lelansky we have improved usage of GlassFish CLI.

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.1 view tag
Release date 2017-07-06
Released by Bartosz Majsak
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 2

Bug
  • ARQ-2124 - Proper way of passing arguments to glassfish cli
  • ARQ-2125 - Adding wait option for Glassfish container

Thanks to the following list of contributors: Bartosz Majsak, Mirko Lelansky, Ankur Kathuria