Reputation: 2597
I have the project in eclipse with static folder (lib). This folder contains a lot of libraries, also build process of this project based on the maven. Can I automate import(using eclipse maven plugin) all libraries for lib folder to the maven dependencies or I should do it manually? Thanks.
Upvotes: 1
Views: 426
Reputation: 570575
Can I automate import (using eclipse maven plugin) all libraries for lib folder to the maven dependencies or I should do it manually?
To strictly answer your question, there is no automated tool, although you could maybe script something in the spirit of Finding the right version of the right JAR in a maven repository.
And see Maven, how to add additional libs not available in repo for the various possibilities to deal with your JARs.
Upvotes: 5