Arquillian documentation now in Confluence

I’m happy to announce that we have moved the Arquillian Reference Guide out of docbook format in the source tree and over to the new JBoss Documentation Confluence instance.

Arquillian Documentation Editor

The old DocBook version has been imported and with a few fixes in the imported wiki code it all seems ok.

From now on, If you find any errors in the formating or content, you can simply just fix it ~:)

Save time! Drastically trim the dependency graph when testing on JBoss AS 6

Great news! We’ve drastically cut down the number of dependencies that Maven has to download in order to use the JBoss AS 6 remote container adapter Arquillian. You no longer have to download Hibernate just to connect to a remote or managed (standalone) JBoss AS instance ~:)

To cut to the chase, replace this dependency:

<dependency>
   <groupId>org.jboss.jbossas</groupId>
   <artifactId>jboss-as-client</artifactId>
   <version>6.0.0.Final</version>
   <type>pom</type>
</dependency>

with this one:

<dependency>
  <groupId>org.jboss.jbossas</groupId>
  <artifactId>jboss-as-profileservice-client</artifactId>
  <version>6.0.0.Final</version>
  <type>pom</type>
</dependency>

The number of dependencies drops from 318 to just 28! That should save you a heaps of time. Now, Maven doesn’t have download these extra dependenices on the first run, and doesn’t have to resolve the graph on subsequent invocations. You also cut out this unresolved pom warning:

[WARNING] The POM for ws-commons:policy:jar:1.0 is invalid, transitive dependencies
(if any) will not be available, enable debug logging for more details

To make a long story short, the JBoss AS team publishes a stack POM (i.e., BOM) to identify all the dependencies used in JBoss AS. The client POM is a little too well linked and ends up depending on JBoss AS itself somewhere down the line. As you can imagine, this pulls in a lot of transitive dependencies.

The profile service client POM is a trimmed down version that grabs only the libraries needed for communicating with a remote (standalone) JBoss AS instance using the DeploymentManager, which is accessed via the ProfileService.

Cut the internet a break and update your POM today ~:)

ShrinkWrap Descriptors 0.1.6 Released

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

The Arquillian team is proud to announce the 0.1.6 release of the ShrinkWrap Descriptors component!

What is ShrinkWrap Descriptors?

The Shrinkwrap Descriptor project provides an uniformed fluent API for creating and modifying Java EE deployment descriptors on the fly. Starting from the very early JEE 1.3 to the brand new Java EE 7 version, the descriptor project includes almost all official deployment descriptors. Several vendor specific deployment descriptors, mostly JBoss related, are covered as well.

Release details

Component ShrinkWrap Descriptors
Version 0.1.6 view tag
Release date 2011-03-31
Released by Lincoln Baxter, III
Compiled against
  • JUnit – 4.8.1

Published artifacts org.jboss.shrinkwrap.descriptors

  • org.jboss.shrinkwrap.descriptors » shrinkwrap-descriptors-api jar javadoc pom

Release notes and resolved issues 1

Internal Release for JBoss.org Projects

Enhancement
  • SHRINKDESC-50 - Support creation of nodes via text value queries: getOrCreate()

Thanks to the following list of contributors: Lincoln Baxter, III, Andrew Lee Rubinger

ShrinkWrap Descriptors 0.1.5 Released

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

The Arquillian team is proud to announce the 0.1.5 release of the ShrinkWrap Descriptors component!

What is ShrinkWrap Descriptors?

The Shrinkwrap Descriptor project provides an uniformed fluent API for creating and modifying Java EE deployment descriptors on the fly. Starting from the very early JEE 1.3 to the brand new Java EE 7 version, the descriptor project includes almost all official deployment descriptors. Several vendor specific deployment descriptors, mostly JBoss related, are covered as well.

Release details

Component ShrinkWrap Descriptors
Version 0.1.5 view tag
Release date 2011-03-31
Released by Andrew Lee Rubinger
Compiled against
  • JUnit – 4.8.1

Published artifacts org.jboss.shrinkwrap.descriptors

  • org.jboss.shrinkwrap.descriptors » shrinkwrap-descriptors-api jar javadoc pom

Release notes and resolved issues 1

Internal Release for JBoss.org Projects

Feature Request

Thanks to the following list of contributors: Andrew Lee Rubinger, Lincoln Baxter, III

Graphene 1.0.0.Alpha2 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.Alpha2 release of the Graphene component!

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 Graphene
Version 1.0.0.Alpha2 view tag
Release date 2011-03-30
Released by Lukas Fryc

Published artifacts org.jboss.arquillian.ajocado

  • org.jboss.arquillian.ajocado » arquillian-ajocado-impl jar javadoc pom
  • org.jboss.arquillian.ajocado » arquillian-ajocado-api jar javadoc pom
  • org.jboss.arquillian.ajocado » arquillian-ajocado-testng jar javadoc pom

Release notes and resolved issues 10

Enhancement
  • ARQGRA-25 - Check possibilities for SimplifiedFormatter to automatically escape dangerous characters
  • ARQGRA-35 - Support Request Guards on IE
Feature Request
  • ARQGRA-45 - Support addCustomRequestHeader(String,String) for AjaxSelenium
  • ARQGRA-48 - Create TestNG listener instead of an abstract class
  • ARQGRA-57 - Distribute source and javadoc artifacts as well
  • ARQGRA-83 - Be consistent in locator names
Bug
  • ARQGRA-7 - WaitForChangeAndReturn is not working correctly
Task

Thanks to the following list of contributors: Lukas Fryc, Karel Piwko