I’m trying to de-mavenize a project.
Is there a way to extract all the jars needed for this maven project to a folder?
(I’m very newbie with maven, so please; instructions provided should be in dummy mode) Thanks!
😉
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use dependency:copy-dependencies goal of maven dependency plugin to achieve this.
In fact, just run
mvn dependency:dependencieson your maven project and you should find adependenciessubfolder created undertargetfolder and populated with all the dependencies including transitive ones.