Yum安装Maven

Posted

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的主要内容,如果未能解决你的问题,请参考以下文章

Yum安装Maven

CentOS yum 命令出现 [Errno 14] curl#6 - &quot;Couldn&#39;t resolve host ...&quot; 的解决方法(代码片段

ubuntu16.04 yum报错:There are no enabled repos. Run “yum repolist all“ to see the repos you have.(代码片段

jenkins 实验 yum安装

阿里云yum仓库和maven仓库配置记录

Linux下搭建jenkins+svn+http+maven自动化部署