You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 9 Next »

PREREQUISITES

Before you begin, you must have the following:

These instuctions assume the following:

  • The name of the Nexus Repository server is maven.mit.edu.  The actual server name may be different.

Overview

The M.I.T. public repositories can be accessed by using either http or https.

For instructions on how the configure Maven for https, refer to:

${renderedContent}


1. The pom.xml <repository> element

To access the M.I.T. public Maven repositories, add the following to the <repositories> element in your Maven project's pom.xml.

  • The PublicMitRepositoriesGroup consist of 2 repositories.  The 2 repositories are the SASH 1.2 stack and the SASH 2.0 stack.
  • The PublicRepositoriesGroup is the Maven Central repository.

    <repositories>
        ...
        <repository>
            <id>PublicRepositoriesGroup</id>
            <name>PublicRepositoriesGroup</name>
            <url>http://maven.mit.edu/nexus/content/groups/public</url>
        </repository>
        <repository>
            <id>PublicMitRepositoriesGroup</id>
            <name>PublicMitRepositoriesGroup</name>
            <url>http://maven.mit.edu/nexus/content/groups/PublicMitRepositoriesGroup</url>
        </repository>
        ...
    </repositories>
    
  • No labels