Download Maven artifact from remote repository
How to download dependencies from an other repository than the Maven default repository?
1. Insert the repository id from your remote repository.2. Insert the repsitory url from your remote repository.
3. Copy the dependencies XML to the clipboard. Example for a needed dependencies XML:
<dependency>
<groupId>org.architecturerules</groupId>
<artifactId>architecture-rules</artifactId>
<version>3.0.0-rc1</version>
</dependency>
<groupId>org.architecturerules</groupId>
<artifactId>architecture-rules</artifactId>
<version>3.0.0-rc1</version>
</dependency>
4. Paste XML to the textarea on this site and click on submit
Here you can download JAR files which are not in the central Maven repository. This is the case if companies or user set up their own custom repositories. If you dont't want to download from a remote repository and you want to download from the default Maven repository go to this site.
Click here for more information about Maven.