grpc-server-spring-boot-starter-2.10.1.RELEASE.pom 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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-server-spring-boot-starter</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-server-spring-boot-autoconfigure</artifactId>
  45. <version>2.10.1.RELEASE</version>
  46. <scope>compile</scope>
  47. </dependency>
  48. </dependencies>
  49. <dependencyManagement>
  50. <dependencies>
  51. <dependency>
  52. <groupId>io.grpc</groupId>
  53. <artifactId>grpc-bom</artifactId>
  54. <version>1.31.1</version>
  55. <scope>import</scope>
  56. <type>pom</type>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.google.protobuf</groupId>
  60. <artifactId>protobuf-bom</artifactId>
  61. <version>3.12.4</version>
  62. <scope>import</scope>
  63. <type>pom</type>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.cloud</groupId>
  67. <artifactId>spring-cloud-dependencies</artifactId>
  68. <version>Hoxton.SR7</version>
  69. <scope>import</scope>
  70. <type>pom</type>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-starter-parent</artifactId>
  75. <version>2.3.3.RELEASE</version>
  76. <scope>import</scope>
  77. <type>pom</type>
  78. </dependency>
  79. </dependencies>
  80. </dependencyManagement>
  81. </project>