开始

下载安装

官方网站:官方网站
Maven镜像仓库:mvnrepository

配置使用

一般解压到D:\apache-maven-3.6.3这个目录,然后需要配置
D:\apache-maven-3.6.3\conf\settings.xml
settings.xml文件中有所有的可配置信息(被注释掉了),找到对应的位置进行配置。
配置JDK版本,maven中默认使用的jdk1.5。

  1. <profiles>
  2. <!-- 在已有的profiles标签中添加profile标签 -->
  3. <profile>
  4. <id>myjdk</id>
  5. <activation>
  6. <activeByDefault>true</activeByDefault>
  7. <jdk>1.8</jdk>
  8. </activation>
  9. <properties>
  10. <maven.compiler.source>1.8</maven.compiler.source>
  11. <maven.compiler.target>1.8</maven.compiler.target>
  12. <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
  13. </properties>
  14. </profile>
  15. </profiles>
  16. <!-- 让增加的 profile生效 -->
  17. <activeProfiles>
  18. <activeProfile>myjdk</activeProfile>
  19. </activeProfiles>

配置镜像地址为阿里云

  1. <!--setting.xml中添加如下配置-->
  2. <mirrors>
  3. <mirror>
  4. <id>aliyun</id>
  5. <!-- 中心仓库的 mirror(镜像) -->
  6. <mirrorOf>central</mirrorOf>
  7. <name>Nexus aliyun</name>
  8. <!-- aliyun仓库地址 以后所有要指向中心仓库的请求,都会指向aliyun仓库-->
  9. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  10. </mirror>
  11. </mirrors>

配置本地仓库位置

  1. <!--找到对应位置-->
  2. <localRepository>D:\repository</localRepository>

在IDEA中使用
File | Settings | Build, Execution, Deployment | Build Tools | Maven
找到上面的路径,
image.png

项目结构

  • projectNane
    • src
      • main:存放项目使用的Java代码及相关静态文件
        • java:存放Java代码
        • resources:存放静态资源文件
      • test:放测试用的代码及文件
        • java
        • resources
    • pom.xml:Maven的配置文件(重要)

      依赖导入

      1. <dependencies>
      2. <!--在下面加依赖-->
      3. <dependency>
      4. <groupId>junit</groupId>
      5. <artifactId>junit</artifactId>
      6. <version>4.12</version>
      7. <scope>test</scope>
      8. </dependency>
      9. </dependencies>

      小结

      以上是简单的Maven使用说明,学习完后可以写最基本的项目。

      Maven指令