测试 java持久性,想在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>
以上够吗?