1<?xml version="1.0" encoding="UTF-8"?>
2<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4  <modelVersion>4.0.0</modelVersion>
5  <groupId>io.grpc</groupId>
6  <artifactId>grpc-netty</artifactId>
7  <version>1.0.1</version>
8  <name>io.grpc:grpc-netty</name>
9  <description>gRPC: Netty</description>
10  <url>https://github.com/grpc/grpc-java</url>
11  <licenses>
12    <license>
13      <name>BSD 3-Clause</name>
14      <url>http://opensource.org/licenses/BSD-3-Clause</url>
15    </license>
16  </licenses>
17  <developers>
18    <developer>
19      <id>grpc.io</id>
20      <name>gRPC Contributors</name>
21      <email>grpc-io@googlegroups.com</email>
22      <url>http://grpc.io/</url>
23      <organization>Google, Inc.</organization>
24      <organizationUrl>https://www.google.com</organizationUrl>
25    </developer>
26  </developers>
27  <scm>
28    <connection>scm:git:https://github.com/grpc/grpc-java.git</connection>
29    <developerConnection>scm:git:git@github.com:grpc/grpc-java.git</developerConnection>
30    <url>https://github.com/grpc/grpc-java</url>
31  </scm>
32  <dependencies>
33    <dependency>
34      <groupId>io.netty</groupId>
35      <artifactId>netty-codec-http2</artifactId>
36      <version>[4.1.3.Final]</version>
37      <scope>compile</scope>
38    </dependency>
39    <dependency>
40      <groupId>junit</groupId>
41      <artifactId>junit</artifactId>
42      <version>4.11</version>
43      <scope>test</scope>
44    </dependency>
45    <dependency>
46      <groupId>io.grpc</groupId>
47      <artifactId>grpc-testing</artifactId>
48      <version>1.0.1</version>
49      <scope>test</scope>
50    </dependency>
51    <dependency>
52      <groupId>io.grpc</groupId>
53      <artifactId>grpc-core</artifactId>
54      <version>[1.0.1]</version>
55      <scope>compile</scope>
56    </dependency>
57    <dependency>
58      <groupId>org.mockito</groupId>
59      <artifactId>mockito-core</artifactId>
60      <version>1.9.5</version>
61      <scope>test</scope>
62    </dependency>
63  </dependencies>
64</project>
65