JavaWeb03-4.0.0版本的pom.xml

4.0.0版本的pom.xml:当前仅有的可以被Maven2&3同时支持的POM版本。

<?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">
   <modelVersion>4.0.0</modelVersion>
   
   <groupId>...</groupId>
   <artifactId>...</artifactId>
   <version>...</version>
   <packaging>...</packaging>
   <dependencies>...</dependencies>
   <parent>...</parent>
   <modules>...</modules>
   <properties>...</properties>
   <build>...</build>
  ...

 

原文地址:https://www.cnblogs.com/Patrick20726/p/13581876.html