C/C++教程

centos7 安装 maven 配置

本文主要是介绍centos7 安装 maven 配置,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

官网下载redis安装包;和jdk一样不用最新版本
https://maven.apache.org/docs/history.html

然后把安装包上传服务器 解压该压缩包我的目录 /usr/local/maven
tar -zxvf apache-maven-3.6.3-bin.tar.gz 

配置MAVEN_HOME
vi /etc/profile
文末添加 i切换命令输入 粘贴 退出Esc :wq保存

#MAVEN_HOME
export MAVEN_HOME=/usr/local/maven
export PATH=$JAVA_HOME/bin:${MAVEN_HOME}/bin:$PATH

 

刷新配置生效
source /etc/profile

检查
mvn –v

 

配置阿里云镜像

vim /usr/local/maven/apache-maven-3.6.3/conf/settings.xml

添加 i切换命令输入 粘贴 退出Esc :wq保存

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

指定本地仓库位置
<localRepository>/usr/local/maven/repository</localRepository>

指定JDK版本
<profile>
    <id>jdk-1.8</id>
    <activation>
        <activeByDefault>true</activeByDefault>
        <jdk>1.8</jdk>
    </activation>
    <properties>
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
        <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
    </properties>
</profile>

 

这篇关于centos7 安装 maven 配置的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!