Добавьте это к вашему POM:
<profiles>
<profile>
<id>debug</id>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-surefire-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<argLine>-Xdebug -Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=y</argLine>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
Теперь вы можете включить отладку с помощью mvn ... -P debug
, когда будет напечатана следующая строка:
Прослушивание транспорта dt_socket по адресу: 8000
См. Справку Eclipse о том, как настроить IDE .