blob: 1b32b595d897f2200e95382383a8bc65a4da279b [file] [log] [blame]
nathanmittlerffc18f62014-10-28 16:14:27 -07001<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 <parent>
6 <groupId>com.google.net.stubby</groupId>
7 <artifactId>stubby-parent</artifactId>
8 <version>1.0-SNAPSHOT</version>
9 </parent>
10
11 <artifactId>stubby-netty</artifactId>
12 <packaging>jar</packaging>
13
14 <name>Stubby/Netty</name>
15
16 <dependencies>
17 <dependency>
18 <groupId>${project.groupId}</groupId>
19 <artifactId>stubby-core</artifactId>
20 <version>${project.version}</version>
21 </dependency>
22 <dependency>
23 <groupId>io.netty</groupId>
24 <artifactId>netty-codec-http2</artifactId>
25 </dependency>
26 <dependency>
27 <groupId>com.twitter</groupId>
28 <artifactId>hpack</artifactId>
29 </dependency>
30
31 <dependency>
32 <groupId>${project.groupId}</groupId>
33 <artifactId>stubby-core</artifactId>
34 <type>test-jar</type>
35 <version>${project.version}</version>
36 <scope>test</scope>
37 </dependency>
38 <dependency>
39 <groupId>${project.groupId}</groupId>
40 <artifactId>stubby-testing</artifactId>
41 <version>${project.version}</version>
42 <scope>test</scope>
43 </dependency>
44 <dependency>
45 <groupId>junit</groupId>
46 <artifactId>junit</artifactId>
47 <scope>test</scope>
48 </dependency>
49 <dependency>
50 <groupId>org.mockito</groupId>
51 <artifactId>mockito-core</artifactId>
52 <scope>test</scope>
53 </dependency>
54 </dependencies>
55</project>