In
maven we use maven_opts to pass parameters to the
Java VM.
E.g. : set MAVEN_OPTS=-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
I am aware of the -D option. It is used to send the java system property. What exactly '-X' option represent?
I am aware of the -Xms, -Xmx options which are used to set the heap size.
In the above example what exaclty the line/point "-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000" represent or what is does?
Thanks in advance.
Regards,
Naresh.