Window Maven

1、Maven的安装包

A.官网下载地址

Maven官网地址
http://maven.apache.org/download.cgi
image.png

B.安装包下载

apache-maven-3.6.1-bin.zip

2、settings.xml文件配置

A.使用配置好的settings.xml文件

①下载下面的settings.xml文件并将其保存至个人配置目录

settings.xml

②修改自己的本地仓库地址

image.png

B.从安装包中conf目录下的settings.xml配置

①配置私服仓库

image.png

  1. <!-- 阿里云仓库 -->
  2. <mirror>
  3. <id>alimaven</id>
  4. <mirrorOf>central</mirrorOf>
  5. <name>aliyun maven</name>
  6. <url>http://maven.aliyun.com/nexus/content/repositories/central/</url>
  7. </mirror>
  8. <mirror>
  9. <id>alimaven</id>
  10. <name>aliyun maven</name>
  11. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  12. <mirrorOf>central</mirrorOf>
  13. </mirror>
  14. <!-- 中央仓库 -->
  15. <mirror>
  16. <id>repo</id>
  17. <mirrorOf>central</mirrorOf>
  18. <name>Human Readable Name for this Mirror.</name>
  19. <url>http://repo1.maven.org/maven2/</url>
  20. </mirror>
  21. <mirror>
  22. <!-- 官方源1-->
  23. <id>central</id>
  24. <name>Maven Repository Switchboard</name>
  25. <url>http://repo1.maven.org/maven2/</url>
  26. <mirrorOf>central</mirrorOf>
  27. </mirror>
  28. <mirror>
  29. <!-- 官方源2-->
  30. <id>repo2</id>
  31. <mirrorOf>central</mirrorOf>
  32. <name>Human Readable Name for this Mirror.</name>
  33. <url>http://repo2.maven.org/maven2/</url>
  34. </mirror>
  35. <mirror>
  36. <!-- ibiblio镜像源-->
  37. <id>ibiblio</id>
  38. <mirrorOf>central</mirrorOf>
  39. <name>Human Readable Name for this Mirror.</name>
  40. <url>http://mirrors.ibiblio.org/pub/mirrors/maven2/</url>
  41. </mirror>
  42. <mirror>
  43. <!-- jboss镜像源-->
  44. <id>jboss-public-repository-group</id>
  45. <mirrorOf>central</mirrorOf>
  46. <name>JBoss Public Repository Group</name>
  47. <url>http://repository.jboss.org/nexus/content/groups/public</url>
  48. </mirror>
  49. <!-- 中央仓库在中国的镜像 -->
  50. <mirror>
  51. <id>maven.net.cn</id>
  52. <name>oneof the central mirrors in china</name>
  53. <url>http://maven.net.cn/content/groups/public/</url>
  54. <mirrorOf>central</mirrorOf>
  55. </mirror>

②配置本地仓库地址

image.png

4、配置系统的Maven环境变量

A.新建MAVEN_HOME变量

image.png

B.添加变量至系统Path变量

image.png

5、在IDEA中配置Maven

A.在当前项目配置Maven

image.png

2.在IDEA中对新项目配置Maven

image.png
image.png