-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathpom.xml
More file actions
41 lines (37 loc) · 1.17 KB
/
pom.xml
File metadata and controls
41 lines (37 loc) · 1.17 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<project>
<parent>
<artifactId>binaryprotocols-project</artifactId>
<groupId>com.welflex.example</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.welflex.example</groupId>
<artifactId>client</artifactId>
<name>Client</name>
<version>1.0-SNAPSHOT</version>
<description>The Web Service Client API and implementation.
</description>
<dependencies>
<dependency>
<groupId>com.welflex.example</groupId>
<artifactId>common</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-json</artifactId>
<version>1.1.5-ea-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>3.16.3</version>
</dependency>
<dependency>
<groupId>com.sun.jersey.contribs</groupId>
<artifactId>jersey-apache-client</artifactId>
<version>1.1.5-ea-SNAPSHOT</version>
</dependency>
</dependencies>
</project>