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>protoc-gen-grpc-java</artifactId> 7 <version>0.13.2</version> 8 <packaging>pom</packaging> 9 <name>io.grpc:grpc-compiler</name> 10 <description>The protoc plugin for gRPC Java</description> 11 <url>https://github.com/grpc/grpc-java</url> 12 <licenses> 13 <license> 14 <name>BSD 3-Clause</name> 15 <url>http://opensource.org/licenses/BSD-3-Clause</url> 16 </license> 17 </licenses> 18 <developers> 19 <developer> 20 <id>grpc.io</id> 21 <name>gRPC Contributors</name> 22 <email>grpc-io (a] googlegroups.com</email> 23 <url>http://grpc.io/</url> 24 <organization>Google, Inc.</organization> 25 <organizationUrl>https://www.google.com</organizationUrl> 26 </developer> 27 </developers> 28 <scm> 29 <connection>scm:svn:https://github.com/grpc/grpc-java.git</connection> 30 <developerConnection>scm:svn:git (a] github.com:grpc/grpc-java.git</developerConnection> 31 <url>https://github.com/grpc/grpc-java</url> 32 </scm> 33 <dependencies> 34 <dependency> 35 <groupId>junit</groupId> 36 <artifactId>junit</artifactId> 37 <version>4.11</version> 38 <scope>test</scope> 39 </dependency> 40 <dependency> 41 <groupId>io.grpc</groupId> 42 <artifactId>grpc-stub</artifactId> 43 <version>0.13.2</version> 44 <scope>test</scope> 45 </dependency> 46 <dependency> 47 <groupId>org.mockito</groupId> 48 <artifactId>mockito-core</artifactId> 49 <version>1.9.5</version> 50 <scope>test</scope> 51 </dependency> 52 <dependency> 53 <groupId>io.grpc</groupId> 54 <artifactId>grpc-protobuf</artifactId> 55 <version>0.13.2</version> 56 <scope>test</scope> 57 </dependency> 58 </dependencies> 59 </project> 60