Shamim Ahmad
Shamim Ahmad

Reputation: 808

What maven command "mvn clean install -e" does?

I know the what maven commnd "mvn clean install" does, but I have come across a new command "mvn clean install -e" can anyone have an idea about this ?

Upvotes: 0

Views: 1523

Answers (1)

beresfordt
beresfordt

Reputation: 5222

To see what flags you can pass to mvn you can run:

mvn -h

which produces a lot of output, the relevant part for you is:

-e,--errors                            Produce execution error messages

Upvotes: 1

Related Questions