Skip to content

Maven

Overview

Apache Maven is a software project management and comprehension tool.

Configuration

Download Maven and add to PATH.

Create a copy of conf/settings.xml to add an internal mirror and modify the path of local repository. Following is a mirror of aliyun.

<mirror>
    <id>nexus-aliyun</id>
    <mirrorOf>central</mirrorOf>
    <name>Nexus aliyun</name>
    <url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>

Nexus

Build a private Maven server with Nexus.

References