ShrinkWrap 1.1.1-alpha-2 Released

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

The Arquillian team is proud to announce the 1.1.1-alpha-2 release of the ShrinkWrap component!

What is ShrinkWrap?

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 ShrinkWrap
Version 1.1.1-alpha-2 view tag
Release date 2012-11-06
Released by Andrew Lee Rubinger
Compiled against
  • JUnit – 4.8.2

Published artifacts org.jboss.shrinkwrap

  • org.jboss.shrinkwrap » shrinkwrap-api jar javadoc pom
  • org.jboss.shrinkwrap » shrinkwrap-api-nio2 jar javadoc pom
  • org.jboss.shrinkwrap » shrinkwrap-bom pom
  • org.jboss.shrinkwrap » shrinkwrap-depchain pom
  • org.jboss.shrinkwrap » shrinkwrap-depchain-java7 pom
  • org.jboss.shrinkwrap » shrinkwrap-impl-base jar javadoc pom
  • org.jboss.shrinkwrap » shrinkwrap-impl-nio2 jar javadoc pom
  • org.jboss.shrinkwrap » shrinkwrap-spi jar javadoc pom

Release notes and resolved issues 1

Bug

Thanks to the following list of contributors: Andrew Lee Rubinger, Michal Matloka

Arquillian Daemon 1.0.0.Alpha1 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.Alpha1 release of the Arquillian Daemon 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 Arquillian Daemon
Version 1.0.0.Alpha1 view tag
Release date 2012-11-03
Released by Andrew Lee Rubinger
Compiled against

Published artifacts org.jboss.arquillian.daemon

  • org.jboss.arquillian.daemon » arquillian-daemon-container-common jar javadoc pom
  • org.jboss.arquillian.daemon » arquillian-daemon-container-managed jar javadoc pom
  • org.jboss.arquillian.daemon » arquillian-daemon-container-remote jar javadoc pom
  • org.jboss.arquillian.daemon » arquillian-daemon-main jar javadoc pom
  • org.jboss.arquillian.daemon » arquillian-daemon-protocol-arquillian jar javadoc pom
  • org.jboss.arquillian.daemon » arquillian-daemon-protocol-wire jar javadoc pom
  • org.jboss.arquillian.daemon » arquillian-daemon-server jar javadoc pom

Release notes and resolved issues 1

Feature Request
  • ARQ-1169 - Create an Arquillian Server Daemon

Thanks to the following list of contributors: Andrew Lee Rubinger

Arquillian Container Weld Root POM 1.0.0.CR5 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.CR5 release of the Arquillian Container Weld Root POM 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 Arquillian Container Weld Root POM
Modules
Version 1.0.0.CR5 view tag
Release date 2012-11-02
Released by Aslak Knutsen
Compiled against

Published artifacts org.jboss.arquillian.container

  • org.jboss.arquillian.container » arquillian-weld-ee-embedded-1.1 jar javadoc pom
  • org.jboss.arquillian.container » arquillian-weld-se-embedded-1 jar javadoc pom
  • org.jboss.arquillian.container » arquillian-weld-se-embedded-1.1 jar javadoc pom

Release notes and resolved issues 3

Minor enhancement

Feature Request
  • ARQ-1148 - weld-ee-container should remove duplicate entries when merging multiple beans.xml files
  • ARQ-1168 - Merge beans.xml files for Embedded Weld Containers

Thanks to the following list of contributors: Aslak Knutsen

Arquillian Transaction Extension 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 Arquillian Transaction Extension component!

JTA implementation

The time has come to extract the JTA transactions support from Arquillian Persistence Extension and move it over to the Transaction Extension. It was in fact quite a natural refactoring step. This opens the possibility of providing a different transaction manager to your (not only) persistence related tests. Many thanks to Jakub Narloch for bringing the Transaction Extension to life as a top level module and helping with this release!

Future releases of the Arquillian Persistence Extension will ship with the JTA extension implementation as a dependency, but the Persistence Extension API will change to the new API from the Transaction Extension. Since the Persistence Extension is using the transaction provider SPI you will be able to change the implementation without a need to adopt your test code to whatever comes in the future.

Usage

Just include this in your dependencies to leverage the JTA implementation within the container of your choice.

pom.xml
<dependency>
  <groupId>org.jboss.arquillian.extension</groupId>
  <artifactId>arquillian-transaction-jta</artifactId>
  <version>1.0.0.Alpha2</version>
</dependency>

New SPI hook

The TransactionEnabler interface has been introduced to the SPI. It gives the option to alternate the strategy for enabling transactions. This is particularly handy for the Persistence Extension where we automatically wrap annotations like @UsingDataSet or @ShouldMatchDataSet in a transaction. For reference you may take a look at the new SPI interface and the related tests.

That’s pretty much it! We look forward to hearing your feedback about this release in the community forums!

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 Transaction Extension
Version 1.0.0.Alpha2 view tag
Release date 2012-10-29
Released by Aslak Knutsen
Compiled against

Published artifacts org.jboss.arquillian.extension

  • org.jboss.arquillian.extension » arquillian-transaction-api jar javadoc pom
  • org.jboss.arquillian.extension » arquillian-transaction-spi jar javadoc pom
  • org.jboss.arquillian.extension » arquillian-transaction-impl-base jar javadoc pom
  • org.jboss.arquillian.extension » arquillian-transaction-jta jar javadoc pom
  • org.jboss.arquillian.extension » arquillian-transaction-bom pom

Release notes and resolved issues 6

Embedded Container and JTA support

Enhancement
  • ARQ-1137 - Provide a way to alter logic determining if transaction support is required
  • ARQ-1156 - Improve resource handling
Feature Request
  • ARQ-1074 - TransactionProvider should be supported on client side
  • ARQ-1155 - Make JNDI transaction name configurable
Sub-task
  • ARQ-1069 - JTA implementation for Transaction Extension

Thanks to the following list of contributors: Bartosz Majsak, Aslak Knutsen, Jakub Narloch

ShrinkWrap 1.1.1-alpha-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.1.1-alpha-1 release of the ShrinkWrap component!

What is ShrinkWrap?

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 ShrinkWrap
Version 1.1.1-alpha-1 view tag
Release date 2012-10-30
Released by Andrew Lee Rubinger
Compiled against
  • JUnit – 4.8.2

Published artifacts org.jboss.shrinkwrap

  • org.jboss.shrinkwrap » shrinkwrap-api jar javadoc pom
  • org.jboss.shrinkwrap » shrinkwrap-api-nio2 jar javadoc pom
  • org.jboss.shrinkwrap » shrinkwrap-bom pom
  • org.jboss.shrinkwrap » shrinkwrap-depchain pom
  • org.jboss.shrinkwrap » shrinkwrap-depchain-java7 pom
  • org.jboss.shrinkwrap » shrinkwrap-impl-base jar javadoc pom
  • org.jboss.shrinkwrap » shrinkwrap-impl-nio2 jar javadoc pom
  • org.jboss.shrinkwrap » shrinkwrap-spi jar javadoc pom

Release notes and resolved issues 9

Feature Request
Bug
  • SHRINKWRAP-430 - ArchivePaths.createInstance breaks in modular CL environments
Task

Thanks to the following list of contributors: Michal Matloka, Andrew Lee Rubinger,