メモ:Arquillian + WildFly managed でデバッグ

Getting Started: Rinse and Repeat · Arquillian Guides

上の arquillian.xml の一部を WildFly 用に書き換えたらOK

<container qualifier="wildfly-managed" default="true">
  <configuration>
    <property name="jbossHome"></property>
    <!-- http://stackoverflow.com/questions/24036740/wildfly-8-remote-debug-application -->
    <property name="javaVmArguments">-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8787</property>
  </configuration>
</container>