Ubuntu上安装maven

apt install maven

用maven默认的库下载会很慢,可以配置阿里云的maven仓库,又要感谢阿里云了:)

修改/etc/maven/settings.xml,在mirrors中添加

<mirror>
    <mirrorOf>*</mirrorOf>
    <name>aliyun</name>
    <url>https://maven.aliyun.com/repository/public</url>
</mirror>

速度真是飞起呀:)


评论

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注