File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments