Testing java persistence, want to integrate jrebel on arquillian tests. I've read something about an arquillian jrebel extension, but could not configure it well (maven dependency error).
Right now I'm just running remotely Jboss with jrebel plugin, on pom.xml:
<plugin>
<groupId>org.zeroturnaround</groupId>
<artifactId>jrebel-maven-plugin</artifactId>
<executions>
<execution>
<id>generate-rebel-xml</id>
<phase>process-resources</phase>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
</plugin>
Is the above enough?