Ubuntu20安装maven并切换阿里镜像源

参考

阿里巴巴开源镜像站

安装maven并切换阿里镜像源

执行sudo apt install maven

安装maven

Ubuntu20安装maven并切换阿里镜像源

mvn -v

查看版本

Ubuntu20安装maven并切换阿里镜像源

修改为国内阿里镜像源,找到/usr/share/maven/conf/settings.xml文件 打开并修改以下

<mirror>
    <id>aliyunmaven</id>
    <mirrorOf>*</mirrorOf>
    <name>阿里云公共仓库</name>
    <url>https://maven.aliyun.com/repository/public</url>
</mirror>

Ubuntu20安装maven并切换阿里镜像源Ubuntu20安装maven并切换阿里镜像源

Ubuntu20安装maven并切换阿里镜像源

可能会显示只读

可以修改下权限在保存

sudo chmod 777 /usr/share/maven/conf/settings.xml

Ubuntu20安装maven并切换阿里镜像源Ubuntu20安装maven并切换阿里镜像源

Ubuntu20安装maven并切换阿里镜像源

然后保存

上一篇:1、Python与设计模式--单例模式


下一篇:Ubuntu 安装Composer并全局配置国内镜像源