grpc-protobuf-1.30.2.pom 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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-protobuf</artifactId>
  7. <version>1.30.2</version>
  8. <name>io.grpc:grpc-protobuf</name>
  9. <description>gRPC: Protobuf</description>
  10. <url>https://github.com/grpc/grpc-java</url>
  11. <licenses>
  12. <license>
  13. <name>Apache 2.0</name>
  14. <url>https://opensource.org/licenses/Apache-2.0</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>https://grpc.io/</url>
  23. <organization>gRPC Authors</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.grpc</groupId>
  35. <artifactId>grpc-api</artifactId>
  36. <version>1.30.2</version>
  37. <scope>compile</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.google.code.findbugs</groupId>
  41. <artifactId>jsr305</artifactId>
  42. <version>3.0.2</version>
  43. <scope>compile</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.google.protobuf</groupId>
  47. <artifactId>protobuf-java</artifactId>
  48. <version>3.12.0</version>
  49. <scope>compile</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.google.api.grpc</groupId>
  53. <artifactId>proto-google-common-protos</artifactId>
  54. <version>1.17.0</version>
  55. <scope>compile</scope>
  56. <exclusions>
  57. <exclusion>
  58. <artifactId>protobuf-java</artifactId>
  59. <groupId>com.google.protobuf</groupId>
  60. </exclusion>
  61. <exclusion>
  62. <artifactId>api-common</artifactId>
  63. <groupId>com.google.api</groupId>
  64. </exclusion>
  65. </exclusions>
  66. </dependency>
  67. <dependency>
  68. <groupId>io.grpc</groupId>
  69. <artifactId>grpc-protobuf-lite</artifactId>
  70. <version>1.30.2</version>
  71. <scope>compile</scope>
  72. <exclusions>
  73. <exclusion>
  74. <artifactId>protobuf-javalite</artifactId>
  75. <groupId>com.google.protobuf</groupId>
  76. </exclusion>
  77. </exclusions>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.google.guava</groupId>
  81. <artifactId>guava</artifactId>
  82. <version>28.2-android</version>
  83. <scope>runtime</scope>
  84. <exclusions>
  85. <exclusion>
  86. <artifactId>jsr305</artifactId>
  87. <groupId>com.google.code.findbugs</groupId>
  88. </exclusion>
  89. <exclusion>
  90. <artifactId>animal-sniffer-annotations</artifactId>
  91. <groupId>org.codehaus.mojo</groupId>
  92. </exclusion>
  93. <exclusion>
  94. <artifactId>error_prone_annotations</artifactId>
  95. <groupId>com.google.errorprone</groupId>
  96. </exclusion>
  97. </exclusions>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.google.errorprone</groupId>
  101. <artifactId>error_prone_annotations</artifactId>
  102. <version>2.3.4</version>
  103. <scope>runtime</scope>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.codehaus.mojo</groupId>
  107. <artifactId>animal-sniffer-annotations</artifactId>
  108. <version>1.18</version>
  109. <scope>runtime</scope>
  110. </dependency>
  111. </dependencies>
  112. </project>