From 4d76a7a6d90687dc6fed7bfb5486c7f7fb7ace73 Mon Sep 17 00:00:00 2001 From: wangyu <727842003@qq.com> Date: Wed, 11 Jan 2023 11:10:11 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=AE=8C=E5=96=84=E9=A1=B9=E7=9B=AE?= =?UTF-8?q?=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 5 +++ pom.xml | 121 ++++++++++++++++++++++++++++++++++++++++++++++++++++-- 2 files changed, 123 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 479a8db..5022480 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # REST请求代理(Http Interface) 这可能是你用过最爽的http对接神器。 +基于SpringBoot2.7.7。 ## 特性列表 - 无感知自动注入,只需interface + 注解即可轻松完成对接 @@ -11,3 +12,7 @@ - 自动转换参数、请求体 - 自定义鉴权(施工中) - 动态替换实现(施工中) + +## 快速开始 +您可以参考源码中`rest-proxy-core`的`test`模块查看测试用例,了解基本用法。 +此外,我们提供了`example`项目,您可以直接参考其写法将相关逻辑迁移到您的SpringBoot项目。 diff --git a/pom.xml b/pom.xml index 79114db..b380988 100644 --- a/pom.xml +++ b/pom.xml @@ -58,18 +58,133 @@ + + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + + + + + + https://git.flyfish.group/flyfish-group/rest-proxy.git + + + + + + wangyu + wybaby168@gmail.com + http://flyfish.group + +8 + + + + + + ossrh + https://oss.sonatype.org/content/repositories/snapshots + + + ossrh + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + + release + + + + org.apache.maven.plugins + maven-javadoc-plugin + + package + none + + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.5 + + + sign-artifacts + verify + + sign + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.7 + true + + ossrh + https://oss.sonatype.org/ + true + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar + + + + + + + + org.apache.maven.plugins - maven-source-plugin + maven-compiler-plugin + 3.7.0 + + 1.8 + 1.8 + UTF-8 + + + + org.apache.maven.plugins + maven-dependency-plugin + 3.1.1 - attach-sources + copy-dependencies + package - jar + copy-dependencies + + ${project.build.directory}/lib + false + true + true +