Yum安装Maven
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Yum安装Maven相关的知识,希望对你有一定的参考价值。
一、安装
wget http://repos.fedorapeople.org/repos/dchen/apache-maven/epel-apache-maven.repo -O /etc/yum.repos.d/epel-apache-maven.repo yum -y install apache-maven
二、查询安装目录
1、查找包路径 rpm -qa|grep apache-maven 2、根据包路径查找安装目录 rpm -ql apache-maven-3.5.2-1.el7.noarch
三、配置
配置环境变量:
# maven export MAVEN_HOME=/usr/share/apache-maven export PATH=$MAVEN_HOME/bin:$PATH
<localRepository>/usr/share/apache-maven/repo</localRepository> <mirrors> <mirror> <id>alimaven</id> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/groups/public/</url> <mirrorOf>central</mirrorOf> </mirror> </mirrors>
<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>
以上是关于Yum安装Maven的主要内容,如果未能解决你的问题,请参考以下文章
CentOS yum 命令出现 [Errno 14] curl#6 - "Couldn't resolve host ..." 的解决方法(代码片段
ubuntu16.04 yum报错:There are no enabled repos. Run “yum repolist all“ to see the repos you have.(代码片段