Skip to content

Commit a2713b0

Browse files
authored
Create pom.xml
1 parent ebf983e commit a2713b0

1 file changed

Lines changed: 46 additions & 0 deletions

File tree

web/servlet/errorpage/pom.xml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
5+
http://maven.apache.org/xsd/maven-4.0.0.xsd">
6+
<modelVersion>4.0.0</modelVersion>
7+
8+
<groupId>com.zetcode</groupId>
9+
<artifactId>errorpage</artifactId>
10+
<version>1.0-SNAPSHOT</version>
11+
<packaging>war</packaging>
12+
13+
<properties>
14+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15+
<maven.compiler.source>12</maven.compiler.source>
16+
<maven.compiler.target>12</maven.compiler.target>
17+
</properties>
18+
19+
<dependencies>
20+
<dependency>
21+
<groupId>javax.servlet</groupId>
22+
<artifactId>javax.servlet-api</artifactId>
23+
<version>4.0.1</version>
24+
<scope>provided</scope>
25+
</dependency>
26+
27+
</dependencies>
28+
29+
<build>
30+
<plugins>
31+
32+
<plugin>
33+
<groupId>org.apache.maven.plugins</groupId>
34+
<artifactId>maven-war-plugin</artifactId>
35+
<version>3.2.2</version>
36+
</plugin>
37+
38+
<plugin>
39+
<groupId>org.eclipse.jetty</groupId>
40+
<artifactId>jetty-maven-plugin</artifactId>
41+
<version>9.4.14.v20181114</version>
42+
</plugin>
43+
</plugins>
44+
</build>
45+
46+
</project>

0 commit comments

Comments
 (0)