I would like to have Maven download the JARs listed in a pom.xml file. How do I do that? Currently, Maven wants to compile the project (and it fails). I don\'t care about com
You can try this command:
mvn dependency:resolve
Or just invoke the "install" life cycle as follows:
mvn install