Skip to content

Commit fa69989

Browse files
authored
Create pom.xml
1 parent 2efa996 commit fa69989

1 file changed

Lines changed: 47 additions & 0 deletions

File tree

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
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>welcomefile</artifactId>
10+
<version>1.0-SNAPSHOT</version>
11+
12+
<packaging>war</packaging>
13+
14+
<properties>
15+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16+
<maven.compiler.source>12</maven.compiler.source>
17+
<maven.compiler.target>12</maven.compiler.target>
18+
</properties>
19+
20+
<dependencies>
21+
<dependency>
22+
<groupId>javax.servlet</groupId>
23+
<artifactId>javax.servlet-api</artifactId>
24+
<version>4.0.1</version>
25+
<scope>provided</scope>
26+
</dependency>
27+
28+
</dependencies>
29+
30+
<build>
31+
<plugins>
32+
33+
<plugin>
34+
<groupId>org.apache.maven.plugins</groupId>
35+
<artifactId>maven-war-plugin</artifactId>
36+
<version>3.2.2</version>
37+
</plugin>
38+
39+
<plugin>
40+
<groupId>org.eclipse.jetty</groupId>
41+
<artifactId>jetty-maven-plugin</artifactId>
42+
<version>9.4.14.v20181114</version>
43+
</plugin>
44+
</plugins>
45+
</build>
46+
47+
</project>

0 commit comments

Comments
 (0)