View maven command logs executed by Eclipse plugins

I often found myself in a situation where I would like to know exactly which Maven commands run Eclipse behind the scenes. In this case, I run webapp with WTP, but this question is more general (although I gladly accept the answers only for this scenario).

Is there a way with a pom configuration or an Eclipse configuration to view a log of all the commands (and possibly any output) that any Eclipse plugin (or at least m2eclipse-wtp) has run?

+6
source share
1 answer

The Maven Console will show you the Maven exit from m2e and m2eclipse - access it from the rightmost drop-down list of the regular Console.

+9
source

Source: https://habr.com/ru/post/925595/


All Articles