blob: 732f64ca3aa9b12175ddf6875fa9c30a66502b98 (
plain) (
blame)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>io.grpc</groupId>
<artifactId>grpc-protobuf-lite</artifactId>
<version>1.51.0</version>
<name>io.grpc:grpc-protobuf-lite</name>
<description>gRPC: Protobuf Lite</description>
<url>https://github.com/grpc/grpc-java</url>
<licenses>
<license>
<name>Apache 2.0</name>
<url>https://opensource.org/licenses/Apache-2.0</url>
</license>
</licenses>
<developers>
<developer>
<id>grpc.io</id>
<name>gRPC Contributors</name>
<email>grpc-io@googlegroups.com</email>
<url>https://grpc.io/</url>
<organization>gRPC Authors</organization>
<organizationUrl>https://www.google.com</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/grpc/grpc-java.git</connection>
<developerConnection>scm:git:git@github.com:grpc/grpc-java.git</developerConnection>
<url>https://github.com/grpc/grpc-java</url>
</scm>
<dependencies>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-api</artifactId>
<version>1.51.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-javalite</artifactId>
<version>3.21.7</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>3.0.2</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>31.1-android</version>
<scope>runtime</scope>
</dependency>
</dependencies>
</project>
|