踏雪无痕Alex
2020-02-08 15:48:44浏览 1506
xml声明
<?xml version="1.0" encoding="UTF-8"?>
项目必备
<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">
模型版本(一般为4.0.0)
<modelVersion>4.0.0</modelVersion>
基本结构
<groupId>反写的公司网址+项目名</groupId>
<artifactId>项目名+模块名</artifactId>
<packaging>jar</packaging>
<name></name>
<url></url>
<description></description>
<developers></developers>
<licenses></licenses>
<organization></organization>
<dependencies>
<dependency>
<groupId></groupId>
<artifactId></artifactId>
<version></version>
<type></type>
<scope></scope>
<optional></optional>
<exclusions>
<exclusion>
<groupId></groupId>
<artifactId></artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency></dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId></groupId>
<artifactId></artifactId>
<version></version>
</plugin>
</plugins>
</build>
<parent></parent>
<modules>
<module></module>
</modules>