Skip to content

Commit 5c274b5

Browse files
committed
pom.xml
pom.xml
1 parent 27b4133 commit 5c274b5

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

java-async-servlet/pom.xml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
5+
<groupId>com.hmkcode</groupId>
6+
<artifactId>java-async-servlet</artifactId>
7+
<version>1.0-SNAPSHOT</version>
8+
<packaging>war</packaging>
9+
10+
<name>java-async-servlet</name>
11+
<url>http://maven.apache.org</url>
12+
13+
<properties>
14+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15+
</properties>
16+
17+
<dependencies>
18+
<dependency>
19+
<groupId>javax.servlet</groupId>
20+
<artifactId>javax.servlet-api</artifactId>
21+
<version>3.1.0</version>
22+
</dependency>
23+
24+
</dependencies>
25+
26+
<build>
27+
<finalName>java-async-servlet</finalName>
28+
<plugins>
29+
<plugin>
30+
<groupId>org.eclipse.jetty</groupId>
31+
<artifactId>jetty-maven-plugin</artifactId>
32+
<version>9.0.0.M5</version>
33+
</plugin>
34+
</plugins>
35+
</build>
36+
37+
</project>

0 commit comments

Comments
 (0)