Install maven in ubuntu, and install maven in ubuntu

Source: Internet
Author: User

Install maven in ubuntu, and install maven in ubuntu
Installation environment

Operating System: ubuntu 14.04.1 server amd64

Install jdk

Before installing maven, make sure that jdk has been installed.

For how to install jdk, see "Install jdk in ubuntu".

Download maven
wget http://apache.fayea.com/apache-mirror/maven/maven-3/3.2.3/binaries/apache-maven-3.2.3-bin.tar.gz
Extract
tar -xzf apache-maven-3.2.3-bin.tar.gz
Set Environment Variables

Environment variables include user variables and system variables.

User variable configuration file :~ /. Bashrc (the hidden files in the current user's home directory can be viewed through 'LS-)

System Environment configuration file:/etc/profile

User variables are configured in the same way as system variables. This document uses user variables as an example.

Edit the configuration file. bashrc:

vi .bashrc

Append at the end of the file:

# set maven environmentexport M2_HOME=/home/hadoop/apache-maven-3.2.3export PATH=$M2_HOME/bin:$PATH
Make environment variables take effect
source .bashrc
Verify

Verify that maven is successfully installed.

$ mvn --versionApache Maven 3.2.3 (33f8c3e1027c3ddde99d3cdebad2656a31e8fdf4; 2014-08-12T04:58:10+08:00)Maven home: /home/hadoop/apache-maven-3.2.3Java version: 1.7.0_67, vendor: Oracle CorporationJava home: /home/hadoop/jdk1.7.0_67/jreDefault locale: en_US, platform encoding: UTF-8OS name: "linux", version: "3.13.0-32-generic", arch: "amd64", family: "unix"

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.