|
| 1 | +<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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 2 | + <modelVersion>4.0.0</modelVersion> |
| 3 | + <groupId>git-Demo</groupId> |
| 4 | + <artifactId>git-Demo</artifactId> |
| 5 | + <version>0.0.1-SNAPSHOT</version> |
| 6 | + <packaging>war</packaging> |
| 7 | + <build> |
| 8 | + <sourceDirectory>src</sourceDirectory> |
| 9 | + <plugins> |
| 10 | + <plugin> |
| 11 | + <artifactId>maven-compiler-plugin</artifactId> |
| 12 | + <version>3.13.0</version> |
| 13 | + <configuration> |
| 14 | + <release>17</release> |
| 15 | + </configuration> |
| 16 | + </plugin> |
| 17 | + <plugin> |
| 18 | + <groupId>org.apache.maven.plugins</groupId> |
| 19 | + <artifactId>maven-war-plugin</artifactId> |
| 20 | + <version>3.4.0</version> |
| 21 | + <configuration> |
| 22 | + <failOnMissingWebXml>false</failOnMissingWebXml> |
| 23 | + </configuration> |
| 24 | + </plugin> |
| 25 | + </plugins> |
| 26 | + </build> |
| 27 | +</project> |
0 commit comments