Подтвердить что ты не робот

Как добавить параметры/переключатели в конфигурацию запуска Eclipse/Maven

У меня есть Eclipse (Galileo) с m2eclipse, плагин GWT Eclispe и плагин GWT Maven из установленного кода.

Я создал новую конфигурацию запуска Maven Build в Eclipse и поставил цель gwt:debug. Когда я запускаю конфигурацию, я получаю эту ошибку в консоли:

[ERROR] Failed to execute goal org.codehaus.mojo:gwt-maven-plugin:1.2:debug (default-cli) on project GWTExample: Command [[
C:\Java\jdk1.6.0_18\jre\bin\java -Xmx512m -Xdebug -Xnoagent -Djava.compiler=NONE     -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=y -classpath 
...
<snip>
...
com.google.gwt.dev.DevMode -war "C:\Devel\EclipseProjects\GWTExample\war" -gen 
"C:\Devel\EclipseProjects\GWTExample\target\.generated" -logLevel INFO -port 8888
-startupUrl "my.test.Application/Application.html" my.test.Application
]] failed with status 1
-> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException

Как добавить ключ -e или -X в конфигурацию "Maven Build"?

4b9b3361

Ответ 1

Нажмите "Проект"

Запустить As → Maven build...

Цель → gwt: debug -e -X

Run