This is an automated email from the ASF dual-hosted git repository.
liuhongyu pushed a change to branch
dependabot/maven/shenyu-java-examples/io.springfox-springfox-swagger-ui-2.10.0
in repository https://gitbox.apache.org/repos/asf/shenyu-client-java.git
from cbd855c Merge branch 'main' into
dependabot/maven/shenyu-java-examples/io.springfox-springfox-swagger-ui-2.10.0
add 0fc642c [feat] init shenyu java client (#3)
add b5aea23 Merge branch 'main' into
dependabot/maven/shenyu-java-examples/io.springfox-springfox-swagger-ui-2.10.0
No new revisions were added by this update.
Summary of changes:
.github/ISSUE_TEMPLATE/bug-report.yml | 61 +++++
.../ISSUE_TEMPLATE/config.yml | 2 +-
.github/ISSUE_TEMPLATE/feature-request.yml | 39 +++
.github/ISSUE_TEMPLATE/question.yml | 18 ++
.github/ISSUE_TEMPLATE/task.yml | 25 ++
.github/ISSUE_TEMPLATE/volunteer.yml | 17 ++
.github/PULL_REQUEST_TEMPLATE.md | 10 +
.github/filters.yml | 21 ++
.github/workflows/ci.yml | 94 +++++++
.github/workflows/codeql-analysis.yml | 68 +++++
.mvn/wrapper/maven-wrapper.properties | 19 ++
mvnw | 287 +++++++++++++++++++++
mvnw.cmd | 187 ++++++++++++++
shenyu-java-common/pom.xml | 2 +-
.../shenyu-java-examples-grpc/Dockerfile | 2 +-
.../k8s/shenyu-examples-grpc.yml | 26 +-
.../shenyu-java-examples-grpc/pom.xml | 2 +-
.../shenyu-java-examples-sofa/README.md | 2 +-
.../shenyu-java-examples-sofa/pom.xml | 6 +-
.../pom.xml | 4 +-
.../sofa/api/entity/SofaComplexTypeBean.java | 0
.../sofa/api/entity/SofaSimpleTypeBean.java | 0
.../api/service/SofaClientMultiParamService.java | 0
.../api/service/SofaClientSingleParamService.java | 0
.../sofa/api/service/SofaMultiParamService.java | 0
.../sofa/api/service/SofaSingleParamService.java | 0
.../Dockerfile | 0
.../k8s/ingress.yml | 0
.../k8s/shenyu-examples-sofa.yml | 2 +-
.../k8s/shenyu-zookeeper.yml | 0
.../pom.xml | 14 +-
.../src/main/http/sofa-test-api.http | 0
.../examples/sofa/service/TestSofaApplication.java | 0
.../impl/SofaClientMultiParamServiceImpl.java | 0
.../impl/SofaClientSingleParamServiceImpl.java | 0
.../service/impl/SofaMultiParamServiceImpl.java | 0
.../service/impl/SofaSingleParamServiceImpl.java | 0
.../src/main/resources/application.yml | 0
.../src/main/resources/invoke-server-example.xml | 0
.../shenyu-java-examples-springcloud/pom.xml | 2 +-
.../shenyu-java-examples-springmvc-tomcat/pom.xml | 2 +-
.../shenyu-java-examples-springmvc/pom.xml | 2 +-
.../pom.xml | 2 +-
.../shenyu-example-spring-native-websocket/pom.xml | 6 +-
.../pom.xml | 2 +-
45 files changed, 885 insertions(+), 39 deletions(-)
create mode 100644 .github/ISSUE_TEMPLATE/bug-report.yml
copy
shenyu-spring-boot-starter-java-client/shenyu-spring-boot-starter-java-client-grpc/src/main/resources/META-INF/spring.provides
=> .github/ISSUE_TEMPLATE/config.yml (93%)
create mode 100644 .github/ISSUE_TEMPLATE/feature-request.yml
create mode 100644 .github/ISSUE_TEMPLATE/question.yml
create mode 100644 .github/ISSUE_TEMPLATE/task.yml
create mode 100644 .github/ISSUE_TEMPLATE/volunteer.yml
create mode 100644 .github/PULL_REQUEST_TEMPLATE.md
create mode 100644 .github/filters.yml
create mode 100644 .github/workflows/ci.yml
create mode 100644 .github/workflows/codeql-analysis.yml
create mode 100644 .mvn/wrapper/maven-wrapper.properties
create mode 100755 mvnw
create mode 100644 mvnw.cmd
rename
shenyu-java-examples/shenyu-java-examples-sofa/{shenyu-examples-sofa-api =>
shenyu-java-examples-sofa-api}/pom.xml (91%)
rename
shenyu-java-examples/shenyu-java-examples-sofa/{shenyu-examples-sofa-api =>
shenyu-java-examples-sofa-api}/src/main/java/org/apache/shenyu/examples/sofa/api/entity/SofaComplexTypeBean.java
(100%)
rename
shenyu-java-examples/shenyu-java-examples-sofa/{shenyu-examples-sofa-api =>
shenyu-java-examples-sofa-api}/src/main/java/org/apache/shenyu/examples/sofa/api/entity/SofaSimpleTypeBean.java
(100%)
rename
shenyu-java-examples/shenyu-java-examples-sofa/{shenyu-examples-sofa-api =>
shenyu-java-examples-sofa-api}/src/main/java/org/apache/shenyu/examples/sofa/api/service/SofaClientMultiParamService.java
(100%)
rename
shenyu-java-examples/shenyu-java-examples-sofa/{shenyu-examples-sofa-api =>
shenyu-java-examples-sofa-api}/src/main/java/org/apache/shenyu/examples/sofa/api/service/SofaClientSingleParamService.java
(100%)
rename
shenyu-java-examples/shenyu-java-examples-sofa/{shenyu-examples-sofa-api =>
shenyu-java-examples-sofa-api}/src/main/java/org/apache/shenyu/examples/sofa/api/service/SofaMultiParamService.java
(100%)
rename
shenyu-java-examples/shenyu-java-examples-sofa/{shenyu-examples-sofa-api =>
shenyu-java-examples-sofa-api}/src/main/java/org/apache/shenyu/examples/sofa/api/service/SofaSingleParamService.java
(100%)
rename
shenyu-java-examples/shenyu-java-examples-sofa/{shenyu-examples-sofa-service =>
shenyu-java-examples-sofa-service}/Dockerfile (100%)
rename
shenyu-java-examples/shenyu-java-examples-sofa/{shenyu-examples-sofa-service =>
shenyu-java-examples-sofa-service}/k8s/ingress.yml (100%)
rename
shenyu-java-examples/shenyu-java-examples-sofa/{shenyu-examples-sofa-service =>
shenyu-java-examples-sofa-service}/k8s/shenyu-examples-sofa.yml (98%)
rename
shenyu-java-examples/shenyu-java-examples-sofa/{shenyu-examples-sofa-service =>
shenyu-java-examples-sofa-service}/k8s/shenyu-zookeeper.yml (100%)
rename
shenyu-java-examples/shenyu-java-examples-sofa/{shenyu-examples-sofa-service =>
shenyu-java-examples-sofa-service}/pom.xml (92%)
rename
shenyu-java-examples/shenyu-java-examples-sofa/{shenyu-examples-sofa-service =>
shenyu-java-examples-sofa-service}/src/main/http/sofa-test-api.http (100%)
rename
shenyu-java-examples/shenyu-java-examples-sofa/{shenyu-examples-sofa-service =>
shenyu-java-examples-sofa-service}/src/main/java/org/apache/shenyu/examples/sofa/service/TestSofaApplication.java
(100%)
rename
shenyu-java-examples/shenyu-java-examples-sofa/{shenyu-examples-sofa-service =>
shenyu-java-examples-sofa-service}/src/main/java/org/apache/shenyu/examples/sofa/service/impl/SofaClientMultiParamServiceImpl.java
(100%)
rename
shenyu-java-examples/shenyu-java-examples-sofa/{shenyu-examples-sofa-service =>
shenyu-java-examples-sofa-service}/src/main/java/org/apache/shenyu/examples/sofa/service/impl/SofaClientSingleParamServiceImpl.java
(100%)
rename
shenyu-java-examples/shenyu-java-examples-sofa/{shenyu-examples-sofa-service =>
shenyu-java-examples-sofa-service}/src/main/java/org/apache/shenyu/examples/sofa/service/impl/SofaMultiParamServiceImpl.java
(100%)
rename
shenyu-java-examples/shenyu-java-examples-sofa/{shenyu-examples-sofa-service =>
shenyu-java-examples-sofa-service}/src/main/java/org/apache/shenyu/examples/sofa/service/impl/SofaSingleParamServiceImpl.java
(100%)
rename
shenyu-java-examples/shenyu-java-examples-sofa/{shenyu-examples-sofa-service =>
shenyu-java-examples-sofa-service}/src/main/resources/application.yml (100%)
rename
shenyu-java-examples/shenyu-java-examples-sofa/{shenyu-examples-sofa-service =>
shenyu-java-examples-sofa-service}/src/main/resources/invoke-server-example.xml
(100%)