| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <?xml version="1.0" encoding="UTF-8"?>
- <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">
- <!-- This module was also published with a richer model, Gradle metadata, -->
- <!-- which should be used instead. Do not delete the following line which -->
- <!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
- <!-- that they should prefer consuming it instead. -->
- <!-- do_not_remove: published-with-gradle-metadata -->
- <modelVersion>4.0.0</modelVersion>
- <groupId>net.devh</groupId>
- <artifactId>grpc-server-spring-boot-starter</artifactId>
- <version>2.10.1.RELEASE</version>
- <name>gRPC Spring Boot Starter</name>
- <description>gRPC Spring Boot Starter</description>
- <url>https://github.com/yidongnan/grpc-spring-boot-starter</url>
- <licenses>
- <license>
- <name>MIT License</name>
- <url>http://www.opensource.org/licenses/mit-license.php</url>
- <distribution>repo</distribution>
- </license>
- </licenses>
- <developers>
- <developer>
- <id>yidongnan</id>
- <name>Michael Zhang</name>
- <email>yidongnan@gmail.com</email>
- </developer>
- <developer>
- <id>ST-DDT</id>
- <name>Daniel Theuke</name>
- <email>daniel.theuke@heuboe.de</email>
- <organization>Heusch/Boesefeldt GmbH</organization>
- <organizationUrl>https://www.heuboe.de</organizationUrl>
- </developer>
- </developers>
- <scm>
- <connection>scm:git:git://github.com/yidongnan/grpc-spring-boot-starter.git</connection>
- <developerConnection>scm:git:ssh@github.com:yidongnan/grpc-spring-boot-starter.git</developerConnection>
- <url>https://github.com/yidongnan/grpc-spring-boot-starter</url>
- </scm>
- <dependencies>
- <dependency>
- <groupId>net.devh</groupId>
- <artifactId>grpc-server-spring-boot-autoconfigure</artifactId>
- <version>2.10.1.RELEASE</version>
- <scope>compile</scope>
- </dependency>
- </dependencies>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>io.grpc</groupId>
- <artifactId>grpc-bom</artifactId>
- <version>1.31.1</version>
- <scope>import</scope>
- <type>pom</type>
- </dependency>
- <dependency>
- <groupId>com.google.protobuf</groupId>
- <artifactId>protobuf-bom</artifactId>
- <version>3.12.4</version>
- <scope>import</scope>
- <type>pom</type>
- </dependency>
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-dependencies</artifactId>
- <version>Hoxton.SR7</version>
- <scope>import</scope>
- <type>pom</type>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>2.3.3.RELEASE</version>
- <scope>import</scope>
- <type>pom</type>
- </dependency>
- </dependencies>
- </dependencyManagement>
- </project>
|