Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the difference between Maven build and Maven build... in Eclipse?

I am new to eclipse and programming , so probably a silly question. According to me build just makes jar file but maven install deploys it to local repo thats m2 .

Also there are two options for build ->maven build and-> maven build..

Could u explain me the explain mw the difference between two.

enter image description here

like image 482
wonder Avatar asked Sep 14 '25 19:09

wonder


1 Answers

maven build... lets you specify goal and various other build parameter (build profile, offline, update snapshot, other build parameter etc..)

maven build is a pre-defined goal that eclipse maven plugin wraps under,

You could see the first couple line of output for both of the case

like image 110
jmj Avatar answered Sep 16 '25 09:09

jmj