Reputation: 4646
I have a project in Eclipse which I built using Maven and it has hundreds of JARs as reference libraries. Is there a way to include all these reference libraries to another project?
Upvotes: 3
Views: 16134
Reputation: 4646
Since the original project involved Maven dependencies, there are two ways of doing this.
To accomplish this in Maven style refer to this question. How to add "Maven Managed Dependencies" library in build path eclipse?
The more simpler way of doing this (for beginners and testers), is to just include the original project as a dependency to the new project.
Upvotes: 10