docker unbuntu安装maven3

ubuntu中的apt-get自带了maven的版本,但可惜不是maven3。不仅如此,如果我们使用apt-get install maven, 其将会自动为我们安装java1.7,并将且设置为默认的JDK。

本文介绍如何在ubuntu16.04下安装maven3

安装

首先需要安装jdk1.8

然后:
如果你也是docker安装或是root用户本地安装,那么请在DockerfileRUN中如下输入以下命令;如果你是本地安装,非root用户,请在以下的命令前加sudo依次执行。

apt-get update && apt install software-properties-common -y \
    && add-apt-repository "deb http://ppa.launchpad.net/natecarlson/maven3/ubuntu precise main" \
    && apt-get update && apt-get install maven3 && echo 'export M2_HOME=/usr/share/maven3' >> /etc/profile \
     && echo 'export M2=$M2_HOME/bin' >> /etc/profile \
     && echo 'export PATH=$M2:$PATH' >> /etc/profile

最后,进入容器,或是直接在命令窗口执行
source /etc/profile

验证

mvn --version

    原文作者:myskies
    原文地址: https://segmentfault.com/a/1190000015254427
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞