grpc-client-spring-boot-autoconfigure-2.10.1.RELEASE.pom 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  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-client-spring-boot-autoconfigure</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>net.devh</groupId>
  44. <artifactId>grpc-common-spring-boot</artifactId>
  45. <version>2.10.1.RELEASE</version>
  46. <scope>compile</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter</artifactId>
  51. <version>2.3.3.RELEASE</version>
  52. <scope>compile</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>io.grpc</groupId>
  56. <artifactId>grpc-netty-shaded</artifactId>
  57. <version>1.31.1</version>
  58. <scope>compile</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>io.grpc</groupId>
  62. <artifactId>grpc-protobuf</artifactId>
  63. <version>1.31.1</version>
  64. <scope>compile</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>io.grpc</groupId>
  68. <artifactId>grpc-stub</artifactId>
  69. <version>1.31.1</version>
  70. <scope>compile</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>io.grpc</groupId>
  74. <artifactId>grpc-netty</artifactId>
  75. <version>1.31.1</version>
  76. <scope>compile</scope>
  77. <optional>true</optional>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.springframework.boot</groupId>
  81. <artifactId>spring-boot-starter-actuator</artifactId>
  82. <version>2.3.3.RELEASE</version>
  83. <scope>compile</scope>
  84. <optional>true</optional>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.springframework.cloud</groupId>
  88. <artifactId>spring-cloud-starter-sleuth</artifactId>
  89. <version>2.2.4.RELEASE</version>
  90. <scope>compile</scope>
  91. <optional>true</optional>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.springframework.cloud</groupId>
  95. <artifactId>spring-cloud-starter-consul-discovery</artifactId>
  96. <version>2.2.4.RELEASE</version>
  97. <scope>compile</scope>
  98. <optional>true</optional>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.springframework.cloud</groupId>
  102. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  103. <version>2.2.4.RELEASE</version>
  104. <scope>compile</scope>
  105. <optional>true</optional>
  106. </dependency>
  107. <dependency>
  108. <groupId>io.zipkin.brave</groupId>
  109. <artifactId>brave-instrumentation-grpc</artifactId>
  110. <version>5.12.3</version>
  111. <scope>compile</scope>
  112. <optional>true</optional>
  113. </dependency>
  114. <dependency>
  115. <groupId>javax.inject</groupId>
  116. <artifactId>javax.inject</artifactId>
  117. <version>1</version>
  118. <scope>compile</scope>
  119. <optional>true</optional>
  120. </dependency>
  121. </dependencies>
  122. <dependencyManagement>
  123. <dependencies>
  124. <dependency>
  125. <groupId>io.grpc</groupId>
  126. <artifactId>grpc-bom</artifactId>
  127. <version>1.31.1</version>
  128. <scope>import</scope>
  129. <type>pom</type>
  130. </dependency>
  131. <dependency>
  132. <groupId>com.google.protobuf</groupId>
  133. <artifactId>protobuf-bom</artifactId>
  134. <version>3.12.4</version>
  135. <scope>import</scope>
  136. <type>pom</type>
  137. </dependency>
  138. <dependency>
  139. <groupId>org.springframework.cloud</groupId>
  140. <artifactId>spring-cloud-dependencies</artifactId>
  141. <version>Hoxton.SR7</version>
  142. <scope>import</scope>
  143. <type>pom</type>
  144. </dependency>
  145. <dependency>
  146. <groupId>org.springframework.boot</groupId>
  147. <artifactId>spring-boot-starter-parent</artifactId>
  148. <version>2.3.3.RELEASE</version>
  149. <scope>import</scope>
  150. <type>pom</type>
  151. </dependency>
  152. </dependencies>
  153. </dependencyManagement>
  154. </project>