-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
44 lines (39 loc) · 1.09 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>net.codeattic</groupId>
<artifactId>webrocket</artifactId>
<version>0.1.0</version>
<packaging>jar</packaging>
<description>WebRocket - Minimalistic web framework</description>
<inceptionYear>2011</inceptionYear>
<scm>
<connection>scm:git:https://github.com/jh12z/webrocket.git</connection>
<developerConnection>scm:git:[email protected]:jh12z/webrocket.git</developerConnection>
<url>https://github.com/jh12z/webrocket</url>
</scm>
<dependencies>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.2.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.1</version>
<scope>compile</scope>
</dependency>
</dependencies>
<developers>
<developer>
<name>Juan Hernandez</name>
</developer>
</developers>
</project>