grpc-core-1.57.2.pom 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>io.grpc</groupId>
  6. <artifactId>grpc-core</artifactId>
  7. <version>1.57.2</version>
  8. <name>io.grpc:grpc-core</name>
  9. <description>gRPC: Core</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.57.2</version>
  37. <scope>compile</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.google.code.gson</groupId>
  41. <artifactId>gson</artifactId>
  42. <version>2.10.1</version>
  43. <scope>runtime</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.google.android</groupId>
  47. <artifactId>annotations</artifactId>
  48. <version>4.1.1.4</version>
  49. <scope>runtime</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.codehaus.mojo</groupId>
  53. <artifactId>animal-sniffer-annotations</artifactId>
  54. <version>1.23</version>
  55. <scope>runtime</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.google.errorprone</groupId>
  59. <artifactId>error_prone_annotations</artifactId>
  60. <version>2.18.0</version>
  61. <scope>runtime</scope>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.google.guava</groupId>
  65. <artifactId>guava</artifactId>
  66. <version>32.0.1-android</version>
  67. <scope>runtime</scope>
  68. </dependency>
  69. <dependency>
  70. <groupId>io.perfmark</groupId>
  71. <artifactId>perfmark-api</artifactId>
  72. <version>0.26.0</version>
  73. <scope>runtime</scope>
  74. </dependency>
  75. <dependency>
  76. <groupId>io.grpc</groupId>
  77. <artifactId>grpc-context</artifactId>
  78. <version>1.57.2</version>
  79. <scope>runtime</scope>
  80. </dependency>
  81. </dependencies>
  82. </project>