概述
Maven
是Apache
基金组织的一个开源项目,它是一个软件项目管理和综合工具。
我的整个的后台就是使用maven
来管理的,在使用之后,可以说是非常方便的。
安装与配置
安装
第一步:下载镜像
apache镜像(我下载的是3.3.9)
第二步:解压缩
我的解压缩目录是E:\\LOMTOM_STU\\ecplise\\apache-maven-3.3.9
第四步:测试
打开cmd,输入mvn -v
配置
第五步:配置jdk版本与仓库配置(为了更快去下载插件)
打开配置 apache-maven-3.5.9\\conf\\ settings.xml
<profile>
<id>jdk-1.8</id>
<activation>
<activeByDefault>true</activeByDefault>
<jdk>1.8</jdk>
</activation>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
</properties>
</profile>
<mirrors>
<mirror>
<id>alimaven</id>
<mirrorOf>central</mirrorOf>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/repositories/central/</url>
</mirror>
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
<mirror>
<id>central</id>
<name>Maven Repository Switchboard</name>
<url>http://repo1.maven.org/maven2/</url>
<mirrorOf>central</mirrorOf>
</mirror>
<mirror>
<id>repo2</id>
<mirrorOf>central</mirrorOf>
<name>Human Readable Name for this Mirror.</name>
<url>http://repo2.maven.org/maven2/</url>
</mirror>
<mirror>
<id>ibiblio</id>
<mirrorOf>central</mirrorOf>
<name>Human Readable Name for this Mirror.</name>
<url>http://mirrors.ibiblio.org/pub/mirrors/maven2/</url>
</mirror>
<mirror>
<id>jboss-public-repository-group</id>
<mirrorOf>central</mirrorOf>
<name>JBoss Public Repository Group</name>
<url>http://repository.jboss.org/nexus/content/groups/public</url>
</mirror>
<mirror>
<id>google-maven-central</id>
<name>Google Maven Central</name>
<url>https://maven-central.storage.googleapis.com
</url>
<mirrorOf>central</mirrorOf>
</mirror>
<!-- 中央仓库在中国的镜像 -->
<mirror>
<id>maven.net.cn</id>
<name>oneof the central mirrors in china</name>
<url>http://maven.net.cn/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
</mirrors>
第六步:配置idea
打开idea,点击配置,再点击setting,(如果打开了项目,关闭项目就会出现这个界面,或者直接点击setting)
配置你的maven
环境,最后一个仓库地址没有,自己新建一个文件夹就好了
至此,你的maven
已经安装好了,并且可以使用了,接下来就是创建你的第一个程序了。
作者有话
在使用过程中,maven
给我的最大的感觉就是非常的方便,在引入依赖的时候直接在项目中的pom
文件写依赖就可以,而不是像我以前一样还要自己在网上下载相应的jar
包,而且还可能在配置引入jar
包的时候各种问题。当一次引入依赖的时候他就会下载到你自己配置的仓库,后再引入的时候就不需要再次下载了。可以看到,我的已经有300多M了。