-
Bug
-
Resolution: Done
-
Major
-
1.2.0.Final, 1.2.1.Final
-
None
I use the wildfly maven plugin to run a embedded wildfly 8.2 for my integration tests.
I tried to set two java properties to set set a port-offset and to open a debug socket. This is my code:
<javaOpts> <javaOpt>-Djboss.socket.binding.port-offset=19</javaOpt> <javaOpt>-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=31339</javaOpt></javaOpts>
The embedded wildfly will be started using the given port offset and the debugger socket has also been opened.
But I got this error on the execute-commands maven goal:
Failed to execute goal org.wildfly.plugins:wildfly-maven-plugin:1.2.1.Final:execute-commands (execute-commands) on project message-service-integration: Unable to parse configuration of mojo org.wildfly.plugins:wildfly-maven-plugin:1.2.1.Final:execute-commands: Basic element 'javaOpts' must not contain child elements
The execution will be aborted.
This seems to be a bug, because this already worked until version 1.1.0.Final.