Maven部署

简介

环境要求

Linux 环境

Maven 3.3+ require JDK 1.7

部署方式
  • Mac部署Maven方式

Mac部署的方式是使用brew命令来安装maven,命令为brew install maven

由于国内使用比较慢,则需要替换国内源来加速下载。以下更新homebrew-cask时,可能会找不到文件,这是正常情况,可忽略~

# 替换国内镜像的方式
git -C "$(brew --repo)" remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git
git -C "$(brew --repo homebrew/core)" remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git
git -C "$(brew --repo homebrew/cask)" remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-cask.git

brew update
# 国外镜像复原的方式
git -C "$(brew --repo)" remote set-url origin https://github.com/Homebrew/brew.git
git -C "$(brew --repo homebrew/core)" remote set-url origin https://github.com/Homebrew/homebrew-core.git
git -C "$(brew --repo homebrew/cask)" remote set-url origin https://github.com/Hoapache-maven-3.6.3-bin.tar.gz
mebrew/homebrew-cask.git

brew update
  • Linux 通用方式

通过Maven官方地址: http://maven.apache.org/downl... 下载对应版本压缩文件。

里面会有对应版本的环境要求,比如 Maven 3.3+ require JDK 1.7 及其以上版本才行。见下图。

Maven部署_第1张图片

# 下载好的Maven文件,存放到/usr/local/目录下
cd /usr/local/
# 将其解压完后,并删除源文件
tar -zxvf apache-maven-3.6.3-bin.tar.gz
rm -rf apache-maven-3.6.3-bin.tar.gz
# 对该用户配置环境变量
cat >> ~/.bash_profile << EOF
export M2_HOME=/usr/local/apache-maven-3.6.3
export PATH=$PATH:$M2_HOME/bin
EOF
# 对其配置文件生效
source ~/.bash_profile
# 校验是否安装成功
mvn -version

你可能感兴趣的:(linux服务器maven3)