1 Star 3 Fork 1

千寻啊千寻 / grpc2http-gateway

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 2.28 KB
一键复制 编辑 原始数据 按行查看 历史
p_pbinzhang 提交于 2022-01-06 12:02 . 不使用阿里云 maven 仓库
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.5.8</version>
</parent>
<groupId>com.qianxunclub</groupId>
<artifactId>grpc2http-gateway</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>grpc2http-gateway</name>
<description>grpc 转 http</description>
<properties>
<java.version>1.8</java.version>
<git-commit-id-plugin.version>4.0.4</git-commit-id-plugin.version>
<grpc.version>1.43.1</grpc.version>
<protobuf-java-util.version>3.19.1</protobuf-java-util.version>
<springfox.version>3.0.0</springfox.version>
</properties>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-all</artifactId>
<version>${grpc.version}</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-services</artifactId>
<version>${grpc.version}</version>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java-util</artifactId>
<version>${protobuf-java-util.version}</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-oas</artifactId>
<version>${springfox.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
</plugins>
</build>
<modules>
<module>grpc2http-gateway-core</module>
</modules>
</project>
Java
1
https://gitee.com/qianxunclub/grpc2http-gateway.git
git@gitee.com:qianxunclub/grpc2http-gateway.git
qianxunclub
grpc2http-gateway
grpc2http-gateway
master

搜索帮助