reddaj
reddaj

Reputation: 51

How to Download All JARs from Maven Public Repository

I am interested in obtaining all JAR files contained in the public repository http://repo1.maven.org/maven2/

Is there a way to do so apart from writing a POM file containing all items in the Dependency section?

Essentially I want to create a local mirror

Upvotes: 1

Views: 3447

Answers (2)

Brian Fox
Brian Fox

Reputation: 6832

Use a repo manager like Nexus. Trying to mirror everything will get you banned.

Upvotes: 2

bstick12
bstick12

Reputation: 1749

You could use something like - http://www.gnu.org/software/wget/ to mirror the entire repository but it is going to be huge.

I would recommend you use a local repository manager like:

Upvotes: 2

Related Questions