测试java persistence,想要在 arquillian 测试中集成 jrebel 。我已经阅读了一些关于 arquillian jrebel extension的内容,但无法很好地配置它(maven依赖性错误)。
现在我只是在 pom.xml 上使用 jrebel 插件远程运行 Jboss :
<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>
以上是否足够?