<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<!-- 指定当前的pom的版本 -->
<modelVersion>4.0.0</modelVersion>
<!-- 反写的公司网址+项目名 -->
<groupId>com.imooc.hi</groupId>
<!-- 项目名加+模板名 -->
<artifactId>hi</artifactId>
<version>0.0.1-SNAPSHOT</version>
<!-- 默认是 jar war zip pom -->
<packaging>jar</packaging>
<!-- 项目描述名 -->
<name></name>
<url>项目地址</url>
<!-- 项目依赖 -->
<dependencies>
<dependency>
<groupId>11</groupId>
<artifactId>22</artifactId>
<version>22</version>
<scope>依赖范围</scope>
<!-- 设置依赖是否可选 默认false 子项目默认是继承该依赖的 -->
<optional></optional>
<!-- 排除依赖传递的列表 -->
<exclusions>
<exclusion></exclusion>
</exclusions>
</dependency>
</dependencies>
<!-- 依赖的管理 -->
<dependencyManagement>
</dependencyManagement>
<build>
<!-- 插件列表 -->
<plugins>
<plugin>
</plugin>
</plugins>
</build>
<parent>继承</parent>
<modules>多个模块一起编译</modules>
</project>
maven 配置文件的标签的说明
Posted he-zhi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven 配置文件的标签的说明相关的知识,希望对你有一定的参考价值。
以上是关于maven 配置文件的标签的说明的主要内容,如果未能解决你的问题,请参考以下文章