grpc-common-spring-boot-2.10.1.RELEASE.pom 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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. <!-- This module was also published with a richer model, Gradle metadata, -->
  4. <!-- which should be used instead. Do not delete the following line which -->
  5. <!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
  6. <!-- that they should prefer consuming it instead. -->
  7. <!-- do_not_remove: published-with-gradle-metadata -->
  8. <modelVersion>4.0.0</modelVersion>
  9. <groupId>net.devh</groupId>
  10. <artifactId>grpc-common-spring-boot</artifactId>
  11. <version>2.10.1.RELEASE</version>
  12. <name>gRPC Spring Boot Starter</name>
  13. <description>gRPC Spring Boot Starter</description>
  14. <url>https://github.com/yidongnan/grpc-spring-boot-starter</url>
  15. <licenses>
  16. <license>
  17. <name>MIT License</name>
  18. <url>http://www.opensource.org/licenses/mit-license.php</url>
  19. <distribution>repo</distribution>
  20. </license>
  21. </licenses>
  22. <developers>
  23. <developer>
  24. <id>yidongnan</id>
  25. <name>Michael Zhang</name>
  26. <email>yidongnan@gmail.com</email>
  27. </developer>
  28. <developer>
  29. <id>ST-DDT</id>
  30. <name>Daniel Theuke</name>
  31. <email>daniel.theuke@heuboe.de</email>
  32. <organization>Heusch/Boesefeldt GmbH</organization>
  33. <organizationUrl>https://www.heuboe.de</organizationUrl>
  34. </developer>
  35. </developers>
  36. <scm>
  37. <connection>scm:git:git://github.com/yidongnan/grpc-spring-boot-starter.git</connection>
  38. <developerConnection>scm:git:ssh@github.com:yidongnan/grpc-spring-boot-starter.git</developerConnection>
  39. <url>https://github.com/yidongnan/grpc-spring-boot-starter</url>
  40. </scm>
  41. <dependencies>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter</artifactId>
  45. <version>2.3.3.RELEASE</version>
  46. <scope>compile</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>io.grpc</groupId>
  50. <artifactId>grpc-core</artifactId>
  51. <version>1.31.1</version>
  52. <scope>compile</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter-actuator</artifactId>
  57. <version>2.3.3.RELEASE</version>
  58. <scope>compile</scope>
  59. <optional>true</optional>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.google.guava</groupId>
  63. <artifactId>guava</artifactId>
  64. <version>29.0-jre</version>
  65. <scope>compile</scope>
  66. <optional>true</optional>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework.cloud</groupId>
  70. <artifactId>spring-cloud-starter-sleuth</artifactId>
  71. <version>2.2.4.RELEASE</version>
  72. <scope>compile</scope>
  73. <optional>true</optional>
  74. </dependency>
  75. <dependency>
  76. <groupId>io.zipkin.brave</groupId>
  77. <artifactId>brave-instrumentation-grpc</artifactId>
  78. <version>5.12.3</version>
  79. <scope>compile</scope>
  80. <optional>true</optional>
  81. </dependency>
  82. </dependencies>
  83. <dependencyManagement>
  84. <dependencies>
  85. <dependency>
  86. <groupId>io.grpc</groupId>
  87. <artifactId>grpc-bom</artifactId>
  88. <version>1.31.1</version>
  89. <scope>import</scope>
  90. <type>pom</type>
  91. </dependency>
  92. <dependency>
  93. <groupId>com.google.protobuf</groupId>
  94. <artifactId>protobuf-bom</artifactId>
  95. <version>3.12.4</version>
  96. <scope>import</scope>
  97. <type>pom</type>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.springframework.cloud</groupId>
  101. <artifactId>spring-cloud-dependencies</artifactId>
  102. <version>Hoxton.SR7</version>
  103. <scope>import</scope>
  104. <type>pom</type>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.springframework.boot</groupId>
  108. <artifactId>spring-boot-starter-parent</artifactId>
  109. <version>2.3.3.RELEASE</version>
  110. <scope>import</scope>
  111. <type>pom</type>
  112. </dependency>
  113. </dependencies>
  114. </dependencyManagement>
  115. </project>