Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I get verbose output from Maven in the Eclipse console?

I am trying to figure out why a maven project is not packaging a jar. This is a builds successfully on my coworkers computers. There are no errors when I build, but the jar is not in the destination folder. I was hoping that by getting more verbose output from the maven process, that I could determine the differences between what is happening on my installation, and on other peoples installations.

like image 425
Saltymule Avatar asked Jun 03 '13 14:06

Saltymule


People also ask

Can we debug maven project in Eclipse?

Using Eclipse to debug tests run with Maven Open the Debug Configuration in Eclipse and set up a remote application on port 5005. Run the configuration. The test will resume. You can use break points and all the usual features of Eclipse debugging.


1 Answers

Choose "Run As" -> "Maven build.." or open your Run/Debug configuration

There you can enable Debug output or append a -X behind your goals.

like image 68
xoned Avatar answered Oct 06 '22 19:10

xoned