Maven安装过程图文详解

时间:2022-08-31 20:05:04

Maven 是一个基于 Java 的工具,所以要做的第一件事情就是安装 JDK。

maven作用

其中maven的主要作用有:

  • 项目管理:编译、测试、打包、部署、运行,这一套流程都可以用maven来管理。
  • 管理jar包:也就是上述提到的问题。
  • 管理插件:开发过程中会需要使用各种插件。

下载地址:http://maven.apache.org/download.cgi

Maven安装过程图文详解

下载后解压到自己想安装的目录

Maven安装过程图文详解

配置环境变量:

MAVEN_HOME : D:\ProgramFiles\apache-maven-3.6.1   (压缩所在的路径)

PATH: %MAVEN_HOME%\bin

修改setting.xml配置文件(在压缩路径的conf文件夹下)

 <localRepository>你要放置资源库的地址</localRepository>

Maven安装过程图文详解

Maven安装过程图文详解

Maven安装过程图文详解

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<mirror>
   <id>alimaven</id>
   <name>aliyun maven</name>
   <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
   <mirrorOf>central</mirrorOf>   
  </mirror>
  <mirror>
     <id>nexus-osc</id>
     <mirrorOf>central</mirrorOf>
    <name>Nexus osc</name>
    <url>http://maven.oschina.net/content/groups/public/</url>
   </mirror>
   <mirror>
    <id>nexus-osc-thirdparty</id>
     <mirrorOf>thirdparty</mirrorOf>
     <name>Nexus osc thirdparty</name>
     <url>http://maven.oschina.net/content/repositories/thirdparty/</url>
   </mirror>

打开cmd命令窗口,输入mvn -v

Maven安装过程图文详解

打开eclipse

windows-preferencs-maven

Maven安装过程图文详解

ok,成功!

到此这篇关于Maven安装过程图文详解的文章就介绍到这了,更多相关Maven安装内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://blog.csdn.net/daffordil/article/details/89419252