grpc-core-1.31.1.pom 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>io.grpc</groupId>
  5. <artifactId>grpc-core</artifactId>
  6. <version>1.31.1</version>
  7. <name>io.grpc:grpc-core</name>
  8. <description>gRPC: Core</description>
  9. <url>https://github.com/grpc/grpc-java</url>
  10. <licenses>
  11. <license>
  12. <name>Apache 2.0</name>
  13. <url>https://opensource.org/licenses/Apache-2.0</url>
  14. </license>
  15. </licenses>
  16. <developers>
  17. <developer>
  18. <id>grpc.io</id>
  19. <name>gRPC Contributors</name>
  20. <email>grpc-io@googlegroups.com</email>
  21. <url>https://grpc.io/</url>
  22. <organization>gRPC Authors</organization>
  23. <organizationUrl>https://www.google.com</organizationUrl>
  24. </developer>
  25. </developers>
  26. <scm>
  27. <connection>scm:git:https://github.com/grpc/grpc-java.git</connection>
  28. <developerConnection>scm:git:git@github.com:grpc/grpc-java.git</developerConnection>
  29. <url>https://github.com/grpc/grpc-java</url>
  30. </scm>
  31. <dependencies>
  32. <dependency>
  33. <groupId>io.grpc</groupId>
  34. <artifactId>grpc-api</artifactId>
  35. <version>[1.31.1]</version>
  36. <scope>compile</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.google.code.gson</groupId>
  40. <artifactId>gson</artifactId>
  41. <version>2.8.6</version>
  42. <scope>runtime</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.google.android</groupId>
  46. <artifactId>annotations</artifactId>
  47. <version>4.1.1.4</version>
  48. <scope>runtime</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.codehaus.mojo</groupId>
  52. <artifactId>animal-sniffer-annotations</artifactId>
  53. <version>1.18</version>
  54. <scope>runtime</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.google.errorprone</groupId>
  58. <artifactId>error_prone_annotations</artifactId>
  59. <version>2.3.4</version>
  60. <scope>runtime</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.google.guava</groupId>
  64. <artifactId>guava</artifactId>
  65. <version>29.0-android</version>
  66. <scope>runtime</scope>
  67. <exclusions>
  68. <exclusion>
  69. <artifactId>jsr305</artifactId>
  70. <groupId>com.google.code.findbugs</groupId>
  71. </exclusion>
  72. <exclusion>
  73. <artifactId>animal-sniffer-annotations</artifactId>
  74. <groupId>org.codehaus.mojo</groupId>
  75. </exclusion>
  76. <exclusion>
  77. <artifactId>error_prone_annotations</artifactId>
  78. <groupId>com.google.errorprone</groupId>
  79. </exclusion>
  80. </exclusions>
  81. </dependency>
  82. <dependency>
  83. <groupId>io.perfmark</groupId>
  84. <artifactId>perfmark-api</artifactId>
  85. <version>0.19.0</version>
  86. <scope>runtime</scope>
  87. <exclusions>
  88. <exclusion>
  89. <artifactId>error_prone_annotations</artifactId>
  90. <groupId>com.google.errorprone</groupId>
  91. </exclusion>
  92. </exclusions>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.google.code.findbugs</groupId>
  96. <artifactId>jsr305</artifactId>
  97. <version>3.0.2</version>
  98. <scope>runtime</scope>
  99. </dependency>
  100. </dependencies>
  101. </project>