grpc-api-1.31.1.pom 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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-api</artifactId>
  6. <version>1.31.1</version>
  7. <name>io.grpc:grpc-api</name>
  8. <description>gRPC: API</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-context</artifactId>
  35. <version>1.31.1</version>
  36. <scope>compile</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.google.code.findbugs</groupId>
  40. <artifactId>jsr305</artifactId>
  41. <version>3.0.2</version>
  42. <scope>compile</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.google.guava</groupId>
  46. <artifactId>guava</artifactId>
  47. <version>29.0-android</version>
  48. <scope>runtime</scope>
  49. <exclusions>
  50. <exclusion>
  51. <artifactId>jsr305</artifactId>
  52. <groupId>com.google.code.findbugs</groupId>
  53. </exclusion>
  54. <exclusion>
  55. <artifactId>animal-sniffer-annotations</artifactId>
  56. <groupId>org.codehaus.mojo</groupId>
  57. </exclusion>
  58. <exclusion>
  59. <artifactId>error_prone_annotations</artifactId>
  60. <groupId>com.google.errorprone</groupId>
  61. </exclusion>
  62. </exclusions>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.google.errorprone</groupId>
  66. <artifactId>error_prone_annotations</artifactId>
  67. <version>2.3.4</version>
  68. <scope>runtime</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.codehaus.mojo</groupId>
  72. <artifactId>animal-sniffer-annotations</artifactId>
  73. <version>1.18</version>
  74. <scope>runtime</scope>
  75. </dependency>
  76. </dependencies>
  77. </project>