I have a relatively simple question regarding spring & hibernate maven builds.
Say I have project A, which has had all jars added to the library by the IDE during project configuration at setup time - there was no Maven POM. Everything in this project is assumed to be working without issue.
Now, take project B. This project will replicate project A, but will be configured using a Maven POM.
My question comes in the dependency configuration stage. Take this image
In order to replicate the lib of Project A, is it required that I manually go through the list of added JARs individually, find the correlating maven dependency at a MVN Repo, and then add them to the project POM of Project B? Or is there a 'neater' way to go about building a basic spring dependency set using maven.
Apologies if this question seems trivial, im a still at the beginner stage of building with Maven POMs.
Many thanks.