grpc-stub-1.31.1.pom 2.6 KB

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