Apache maven 安装及配置

Introduce

Apache Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project's build, reporting and documentation from a central piece of information.

Preconditions

  1. Install the latest java jdk.
  2. Configure the environment variables.
  3. Ensure JAVA_HOME environment variable is set and points to your JDK installationApache maven 安装及配置

Install and configure the maven

Reference document: http://maven.apache.org/install.html

1.Download maven file:

http://maven.apache.org/download.cgi

Apache maven 安装及配置

2.unzip the file

3.Configure environment variables

Apache maven 安装及配置

Apache maven 安装及配置

Apache maven 安装及配置

4.check result

Apache maven 安装及配置

5.configure local maven repository

conf\settings.xml

  <localRepository>D:\home\mavenLocalRepository</localRepository>

Apache maven 安装及配置

6.配置eclipse

wndows-preferences-Maven-installations-add

Apache maven 安装及配置

Window - preference -Maven-User Setting

Apache maven 安装及配置

7.将普通项目转化成maven项目

项目右键- Configure-Convert to Maven Project

8.新建一个maven项目

File - New - Project - New project

Apache maven 安装及配置

Apache maven 安装及配置

Apache maven 安装及配置

the end!!!