Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Panel

To access a remote maven repository, add the a <repositories> element below to the Maven project's pom.xml.

For example, to use the Public M.I.T. Maven Repositories, add the following to Maven project pom.xml.

Code Block
<project>
    ...
    <repositories>
        <repository>
            <id>PublicMitRepositoriesGroup</id>
            <name>PublicMitRepositoriesGroup</name>
            <url>
                https://maven.mit.edu/nexus/content/groups/PublicMitRepositoriesGroup
            </url>
        </repository>
    </repositories>
    ...
</project>