arquillian / arquillian-extension-persistence

Arquillian Database / Persistence Extension

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Update to latest transaction extension

rmpestano opened this issue · comments

Due to arquillian/arquillian-extension-transaction#14 we can't use APE and client tests like Drone/Graphene on the same project. One need to replace transaction-extension brought by APE by latest one, like below:

 <dependency>
            <groupId>org.arquillian.universe</groupId>
            <artifactId>arquillian-persistence</artifactId>
            <type>pom</type>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.jboss.arquillian.extension</groupId>
            <artifactId>arquillian-transaction-jta</artifactId>
            <version>1.0.5</version>
            <scope>test</scope>
        </dependency>

It would be nice if APE brought latest transaction extension by default.