Hi,

This is what I want to pass as the surefire argLine param

---
-Xdebug -Xnoagent -Djava.compiler=NONE
-Xrunjdwp:transport=dt_socket,server=y,suspend=y
,address=1824
---

Right now I have this hard coded in the pom as:

<argLine>-Xdebug -Xnoagent -Djava.compiler=NONE
-Xrunjdwp:transport=dt_socket,server=y,suspend=y
,address=7886</argLine>

but I want to remove it from the pom and pass it on the command line.

Don't know whether this works, but what about using properties to do this?
<argLine>${my.cmdline.args}</argLine>

and then "mvn -Dmy.cmd.args='<arguments>' ..."?


HTH

Thorsten

Attachment: PGP.sig
Description: Signierter Teil der Nachricht

Reply via email to