May be it a pretty basic question as I am starting to learn Maven.
Usually, we copy jar files to lib
folder under WEB-INF
folder. Eclipse uses those libraries to help during coding, like automatically importing the necessary packages, showing the class elements when you press . (dot), and auto-completing with Ctrl+Space, etc.
With maven
, the jars are not available in the project until we build/compile the project. That is when, it downloads all jar files. I am not sure if m2eclipse is of any use here.
Any idea how it works? Googling did not give me any info.