Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

Panel

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:

indent
1
1
* [Maven, https and Java keystores with Mac OS X|Maven, https and Java keystores with Mac OS X],\\
\\
* [Maven, https and Java keystores with Windows|Maven, https and Java keystores with Windows], or\\
\\
* [Maven, https and Java keystores|Maven, https and Java keystores]\\


...

Panel

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

indent
1
1
* The PublicMitRepositoriesGroup consist of 2 repositories.&nbsp;&nbsp;The 2 repositories are the SASH 1.2 stack and the SASH 2.0 stack.\\
\\
* The PublicRepositoriesGroup is the Maven Central repository.\\


Code Block
<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>