This commit is contained in:
王永亮
2022-06-13 12:31:01 +08:00
parent 567849c0e2
commit dff22b3a4c
115 changed files with 0 additions and 1664 deletions
-15
View File
@@ -1,15 +0,0 @@
# http://editorconfig.org
root = true
[*]
charset = utf-8
end_of_line = lf
indent_size = 4
indent_style = space
insert_final_newline = true
max_line_length = 140
tab_width = 4
trim_trailing_whitespace = true
[{*.yml, *.yaml, *.ymal}]
indent_size = 2
-78
View File
@@ -1,78 +0,0 @@
# Created by .ignore support plugin (hsz.mobi)
### Maven template
target/
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
pom.xml.next
release.properties
dependency-reduced-pom.xml
buildNumber.properties
.mvn/timing.properties
.mvn/wrapper/maven-wrapper.jar
### IntelliJ IDEA ###
.idea/
.vscode
.project
.settings
*.suo
*.ntvs*
*.njsproj
*.sln
*.iws
*.iml
*.ipr
out/
# CMake
cmake-build-*/
# mpeltonen/sbt-idea plugin
.idea_modules/
# JIRA plugin
atlassian-ide-plugin.xml
# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties
# Compiled class file
*.classpath
*.factorypath
# Log file
*.log
# BlueJ files
*.ctxt
# Mobile Tools for Java (J2ME)
.mtj.tmp/
# Package Files #
*.war
*.ear
*.zip
*.tar.gz
*.rar
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
# 自定义
.DS_Store
not-commit.md
application-prod.yml
app.pid
rebel.xml
.rebel.xml.bak
.flattened-pom.xml
*.hprof
dest
node
node_modules
my-undertow
-36
View File
@@ -1,36 +0,0 @@
v5 框架本地开发目录结构, 使用方式:
```
1. clone 项目
2. 使用 git bash 进入目录并执行 ./init.sh
3. 使用 idea 打开项目
```
以上步骤可能会出现的问题:
1. 请提前在 gitlab 上添加 ssh key, 添加步骤请查考 [http://192.168.2.18/help/ssh/README](http://192.168.2.18/help/ssh/README);
2. 请提前添加 hosts:
```
192.168.2.18 gitlab.server
```
3. 请添加 .ssh config 配置
```
Host gitlab.server
HostName gitlab.server
IdentityFile ~/.ssh/{你的密钥文件名, 一般是 id_rsa [如果添加 ssh key 没有设置过名称的话]}
```
以上步骤会使用到的软件:
1. Git Bash;
2. [SwitchHosts](https://github.com/oldj/SwitchHosts);
以后还会涉及到修改 hosts, 请使用工具提高效率.
## 整体结构
![](./drawio/v5-framework-all.draw.io.svg)
-43
View File
@@ -1,43 +0,0 @@
## 简介
ability 相当于管理层, 管理我们所有的依赖框架, 公司级项目都应该在此依赖框架下进行开发.
依赖框架同样遵循 「约定大于配置」的原则, 只有在不满足业务需求下重写部分依赖配置即可, 大大减少每个项目重复配置的情况.
## 结构说明
```
.
├── bin # shell 脚本, 提供全局 maven 等命令
├── fkh-supreme # 公司顶层项目 # shell 脚本, 提供全局 maven 等命令
├── fkh-framework-build # 框架依赖管理
│ ├── fkh-company-dependencies-parent # bom 管理父模块
│ ├── fkh-company-dependencies # 所有第三方依赖管理, fkh-company-dependencies-parent 的子模块
│ ├── fkh-company-build # company-parent 和 starter-parent 父模块, 管理子模块的公共配置
│ ├── fkh-company-parent # 公司业务项目父模块, 管理公共配置
│ └── fkh-starter-parent # 公司框架项目父模块, 管理公共配置
│ ├── fkh-distribution-parent # 多模块分发部署父项目
│ ├── fkh-doc-distribution-parent # 项目文档分发部署父项目
├── fkh-plugin # Maven 插件
│ ├── fkh-assist-maven-plugin # V5 框架开发辅助插件
│ ├── fkh-boot-loader # 热加载组件, 可动态加载 class, 实现不重启服务加载 class 文件
│ ├── fkh-boot-maven-plugin # 项目启动优化插件, 依赖于 fkh-boot-loader
│ ├── fkh-checkstyle-plugin-rule # 代码格式检查插件
│ ├── fkh-enforcer-plugin-rule # 项目依赖检查插件
│ ├── fkh-makeself-maven-plugin # 项目启动脚本优化插件, 可在 fkh-script-maven-plugin 的基础上生成可直接运行的部署包
│ ├── fkh-plugin-common # 插件项目基础模块, 提供开发插件的工具包
│ ├── fkh-pmd-plugin-rule # 代码质量检查插件 (阿里开发规范)
│ ├── fkh-publish-maven-plugin # 后端, 前端, doc, v4 springboot 服务发布插件
│ └── fkh-script-maven-plugin # 启动脚本生成插件, 可根据参数生成项目特定的启动脚本
└── fkh-starter-processor # SPI 与 Spring Boot 项目相关的配置生成组件
├── fkh-starter-processor-annotation # 注解基础模块
├── fkh-starter-processor-core # 核心模块
└── fkh-starter-processor-sample # 示例项目, 主要用于 debug
├── multi-module # 多模块示例项目
└── single-module # 单模块示例项目
```
## 依赖关系
![](./drawio/ability.draw.io.svg)
Binary file not shown.
-74
View File
@@ -1,74 +0,0 @@
# Created by .ignore support plugin (hsz.mobi)
### Maven template
target/
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
pom.xml.next
release.properties
dependency-reduced-pom.xml
buildNumber.properties
.mvn/timing.properties
.mvn/wrapper/maven-wrapper.jar
### IntelliJ IDEA ###
.idea/
.vscode
.project
.settings
*.suo
*.ntvs*
*.njsproj
*.sln
*.iws
*.iml
*.ipr
out/
# CMake
cmake-build-*/
# mpeltonen/sbt-idea plugin
.idea_modules/
# JIRA plugin
atlassian-ide-plugin.xml
# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties
# Compiled class file
*.classpath
*.factorypath
# Log file
*.log
# BlueJ files
*.ctxt
# Mobile Tools for Java (J2ME)
.mtj.tmp/
# Package Files #
*.war
*.ear
*.zip
*.tar.gz
*.rar
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
# 自定义
not-commit.md
application-prod.yml
.DS_Store
app.pid
rebel.xml
.rebel.xml.bak
.flattened-pom.xml
*.hprof
-10
View File
@@ -1,10 +0,0 @@
#!/bin/bash
source ./path.sh
cd "${CURRENT_PATH}"/../fkh-supreme && git checkout $1 && \
cd "${CURRENT_PATH}"/../fkh-plugin && git checkout $1 && \
cd "${CURRENT_PATH}"/../fkh-framework-build && git checkout $1 && \
cd "${CURRENT_PATH}"/../fkh-starter-processor && git checkout $1
-8
View File
@@ -1,8 +0,0 @@
#!/bin/bash
source ./path.sh
cd "${CURRENT_PATH}"/../fkh-supreme && ./mvnw clean -Dmaven.test.skip=true &
cd "${CURRENT_PATH}"/../fkh-plugin && ./mvnw clean -Dmaven.test.skip=true &
cd "${CURRENT_PATH}"/../fkh-starter-processor && ./mvnw clean -Dmaven.test.skip=true &
cd "${CURRENT_PATH}"/../fkh-framework-build && ./mvnw clean -Dmaven.test.skip=true &
-10
View File
@@ -1,10 +0,0 @@
#!/bin/bash
source ./path.sh
cd "${CURRENT_PATH}"/.. && \
git clone git@gitlab.server:v5-framework/fkh-supreme.git fkh-supreme && \
git clone git@gitlab.server:v5-framework/fkh-starter-processor.git fkh-starter-processor && \
git clone git@gitlab.server:v5-framework/fkh-plugin.git fkh-plugin && \
git clone git@gitlab.server:v5-framework/fkh-framework-build.git fkh-framework-build
-9
View File
@@ -1,9 +0,0 @@
#!/bin/bash
source ./path.sh
cd "${CURRENT_PATH}"/../fkh-supreme && ./mvnw clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-plugin && ./mvnw clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-starter-processor && ./mvnw clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-framework-build && ./mvnw clean compile -Dmaven.test.skip=true
-8
View File
@@ -1,8 +0,0 @@
#!/bin/bash
source ./path.sh
cd "${CURRENT_PATH}"/../fkh-supreme && ./mvnw -T 2C clean deploy -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-starter-processor && ./mvnw -T 2C clean deploy -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-plugin && ./mvnw -T 2C clean deploy -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-framework-build && ./mvnw -T 2C clean deploy -Dmaven.test.skip=true
-8
View File
@@ -1,8 +0,0 @@
#!/bin/bash
source ./path.sh
cd "${CURRENT_PATH}"/../fkh-supreme && ./mvnw -T 2C clean install -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-starter-processor && ./mvnw -T 2C clean install -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-plugin && ./mvnw -T 2C clean install -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-framework-build && ./mvnw -T 2C clean install -Dmaven.test.skip=true
-15
View File
@@ -1,15 +0,0 @@
#!/bin/bash
CURRENT_PATH=$(pwd)
dirname $0 | grep "^/" >/dev/null
if [[ $? -eq 0 ]]; then
CURRENT_PATH=$(dirname $0)
else
dirname $0 | grep "^\." >/dev/null
retval=$?
if [[ ${retval} -eq 0 ]]; then
CURRENT_PATH=$(dirname $0 | sed "s#^.#$CURRENT_PATH#")
else
CURRENT_PATH=$(dirname $0 | sed "s#^#$CURRENT_PATH/#")
fi
fi
-11
View File
@@ -1,11 +0,0 @@
#!/usr/bin/env bash
source ./path.sh
ORIGIN="$1"
BRANCH="$2"
cd "${CURRENT_PATH}"/../fkh-supreme && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-plugin && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-starter-processor && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-framework-build && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
-8
View File
@@ -1,8 +0,0 @@
#!/bin/bash
source ./path.sh
cd "${CURRENT_PATH}"/../fkh-supreme && git push --tags
cd "${CURRENT_PATH}"/../fkh-starter-processor && git push --tags
cd "${CURRENT_PATH}"/../fkh-plugin && git push --tags
cd "${CURRENT_PATH}"/../fkh-framework-build && git push --tags
-18
View File
@@ -1,18 +0,0 @@
#!/usr/bin/env bash
source ./path.sh
ORIGIN="$1"
BRANCH="$2"
cd "${CURRENT_PATH}"/../fkh-supreme && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-supreme && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain ${ORIGIN} refs/heads/${BRANCH}:${BRANCH} --tags
cd "${CURRENT_PATH}"/../fkh-plugin && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-plugin && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain ${ORIGIN} refs/heads/${BRANCH}:${BRANCH} --tags
cd "${CURRENT_PATH}"/../fkh-starter-processor && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-starter-processor && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain ${ORIGIN} refs/heads/${BRANCH}:${BRANCH} --tags
cd "${CURRENT_PATH}"/../fkh-framework-build && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-framework-build && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain ${ORIGIN} refs/heads/${BRANCH}:${BRANCH} --tags
-10
View File
@@ -1,10 +0,0 @@
#!/bin/bash
source ./path.sh
TAG_NAME="$1"
cd "${CURRENT_PATH}"/../fkh-supreme && git tag "${TAG_NAME}"
cd "${CURRENT_PATH}"/../fkh-starter-processor && git tag "${TAG_NAME}"
cd "${CURRENT_PATH}"/../fkh-plugin && git tag "${TAG_NAME}"
cd "${CURRENT_PATH}"/../fkh-framework-build && git tag "${TAG_NAME}"
-8
View File
@@ -1,8 +0,0 @@
#!/bin/bash
source ./path.sh
cd "${CURRENT_PATH}"/../fkh-supreme && ./mvnw -T 2C clean validate -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-plugin && ./mvnw -T 2C clean validate -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-starter-processor && ./mvnw -T 2C clean validate -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-framework-build && ./mvnw -T 2C clean validate -Dmaven.test.skip=true
File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 54 KiB

-11
View File
@@ -1,11 +0,0 @@
clean:
mvn clean
install:clean
./bin/install.sh
deploy:clean
./bin/deploy.sh
checkout:
./bin/checkout.sh {分支名}
-23
View File
@@ -1,23 +0,0 @@
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>ability</artifactId>
<groupId>com.fkhwl</groupId>
<version>stable</version>
<packaging>pom</packaging>
<modules>
<module>fkh-supreme</module>
<module>fkh-starter-processor</module>
<module>fkh-plugin</module>
<module>fkh-framework-build</module>
</modules>
<properties>
<maven.install.skip>true</maven.install.skip>
<maven.deploy.skip>true</maven.deploy.skip>
</properties>
</project>
-29
View File
@@ -1,29 +0,0 @@
## 简介
ability 相当于管理层, 管理我们所有的依赖框架, 公司级项目都应该在此依赖框架下进行开发.
依赖框架同样遵循 「约定大于配置」的原则, 只有在不满足业务需求下重写部分依赖配置即可, 大大减少每个项目重复配置的情况.
## 结构说明
```
.
├── fkh-element-autoconfigure # 自动装配组件基础依赖
├── fkh-element-basic # 自动装配基础依赖
├── fkh-element-bridge # 处理与 V4 桥接的逻辑, 主要提供安全相关工具
├── fkh-element-common # 主要提供环境, 事件, 项目启动, 数据转换等功能
├── fkh-element-core # 提供反射, 基础实体, JSON 处理, 枚举, Bean 操作等
├── fkh-element-dependencies # 管理此项目的依赖, 业务端使用此模块即可, 无需关心版本号
├── fkh-element-notify # 通知相关基础接口相关实体
├── fkh-element-spi # 将 Dubbo SPI 源码提取出来作为 SPI 基础工具包
├── fkh-element-tracer # 提供追踪相关工具类(计划是将 logcat 中基础类迁移到此模块)
├── fkh-element-validation # 正则, 参数验证, 分组验证等
├── fkh-element-web # rest 和 agent 共用的类
├── fkh-element-test # 提供 Mock 与项目单元测试相关工具类, 通过一个注解即可实现集成测试
├── fkh-element-devtools # 代码自动生成
└── fkh-sentinel-extend # sentinel 配置写入 nacos 并实现动态修改规则的扩展
```
## 依赖关系
![](./drawio/element-relationship.drawio.svg)
-74
View File
@@ -1,74 +0,0 @@
# Created by .ignore support plugin (hsz.mobi)
### Maven template
target/
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
pom.xml.next
release.properties
dependency-reduced-pom.xml
buildNumber.properties
.mvn/timing.properties
.mvn/wrapper/maven-wrapper.jar
### IntelliJ IDEA ###
.idea/
.vscode
.project
.settings
*.suo
*.ntvs*
*.njsproj
*.sln
*.iws
*.iml
*.ipr
out/
# CMake
cmake-build-*/
# mpeltonen/sbt-idea plugin
.idea_modules/
# JIRA plugin
atlassian-ide-plugin.xml
# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties
# Compiled class file
*.classpath
*.factorypath
# Log file
*.log
# BlueJ files
*.ctxt
# Mobile Tools for Java (J2ME)
.mtj.tmp/
# Package Files #
*.war
*.ear
*.zip
*.tar.gz
*.rar
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
# 自定义
not-commit.md
application-prod.yml
.DS_Store
app.pid
rebel.xml
.rebel.xml.bak
.flattened-pom.xml
*.hprof
-5
View File
@@ -1,5 +0,0 @@
#!/bin/bash
source ./path.sh
cd "${CURRENT_PATH}"/../fkh-element && git checkout $1
-5
View File
@@ -1,5 +0,0 @@
#!/bin/bash
source ./path.sh
cd "${CURRENT_PATH}"/../fkh-element && ./mvnw clean -Dmaven.test.skip=true &
-8
View File
@@ -1,8 +0,0 @@
#!/bin/bash
source ./path.sh
cd "${CURRENT_PATH}"/.. && git clone git@gitlab.server:v5-assembly/fkh-element.git fkh-element
-6
View File
@@ -1,6 +0,0 @@
#!/bin/bash
source ./path.sh
cd "${CURRENT_PATH}"/../fkh-element && ./mvnw clean compile -Dmaven.test.skip=true
-5
View File
@@ -1,5 +0,0 @@
#!/bin/bash
source ./path.sh
cd "${CURRENT_PATH}"/../fkh-element && ./mvnw -T 12C clean deploy -Dmaven.test.skip=true
-5
View File
@@ -1,5 +0,0 @@
#!/bin/bash
source ./path.sh
cd "${CURRENT_PATH}"/../fkh-element && ./mvnw -T 12C clean install -Dmaven.test.skip=true
-15
View File
@@ -1,15 +0,0 @@
#!/bin/bash
CURRENT_PATH=$(pwd)
dirname $0 | grep "^/" >/dev/null
if [[ $? -eq 0 ]]; then
CURRENT_PATH=$(dirname $0)
else
dirname $0 | grep "^\." >/dev/null
retval=$?
if [[ ${retval} -eq 0 ]]; then
CURRENT_PATH=$(dirname $0 | sed "s#^.#$CURRENT_PATH#")
else
CURRENT_PATH=$(dirname $0 | sed "s#^#$CURRENT_PATH/#")
fi
fi
-8
View File
@@ -1,8 +0,0 @@
#!/usr/bin/env bash
source ./path.sh
ORIGIN="$1"
BRANCH="$2"
cd "${CURRENT_PATH}"/../fkh-element && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
-7
View File
@@ -1,7 +0,0 @@
#!/bin/bash
source ./path.sh
TAG_NAME="$1"
cd "${CURRENT_PATH}"/../fkh-element && git push --tags
-9
View File
@@ -1,9 +0,0 @@
#!/usr/bin/env bash
source ./path.sh
ORIGIN="$1"
BRANCH="$2"
cd "${CURRENT_PATH}"/../fkh-element && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-element && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain ${ORIGIN} refs/heads/${BRANCH}:${BRANCH} --tags
-7
View File
@@ -1,7 +0,0 @@
#!/bin/bash
source ./path.sh
TAG_NAME="$1"
cd "${CURRENT_PATH}"/../fkh-element && git tag "${TAG_NAME}"
-5
View File
@@ -1,5 +0,0 @@
#!/bin/bash
source ./path.sh
cd "${CURRENT_PATH}"/../fkh-element && ./mvnw -T 12C clean validate -Dmaven.test.skip=true
File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 54 KiB

Submodule band/fkh-element deleted from 00af95ae73
-11
View File
@@ -1,11 +0,0 @@
clean:
mvn clean
install:clean
./bin/install.sh
deploy:clean
./bin/deploy.sh
checkout:
./bin/checkout.sh {分支名}
-20
View File
@@ -1,20 +0,0 @@
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>band</artifactId>
<groupId>com.fkhwl</groupId>
<version>stable</version>
<packaging>pom</packaging>
<modules>
<module>fkh-element</module>
</modules>
<properties>
<maven.install.skip>true</maven.install.skip>
<maven.deploy.skip>true</maven.deploy.skip>
</properties>
</project>
-7
View File
@@ -1,7 +0,0 @@
#!/bin/bash
source ./path.sh
"${CURRENT_PATH}"/../ability/bin/checkout.sh $1
"${CURRENT_PATH}"/../band/bin/checkout.sh $1
"${CURRENT_PATH}"/../coffee/bin/checkout.sh $1
-7
View File
@@ -1,7 +0,0 @@
#!/bin/bash
source ./path.sh
"${CURRENT_PATH}"/../ability/bin/clean.sh
"${CURRENT_PATH}"/../band/bin/clean.sh
"${CURRENT_PATH}"/../coffee/bin/clean.sh
-7
View File
@@ -1,7 +0,0 @@
#!/bin/bash
source ./path.sh
"${CURRENT_PATH}"/../ability/bin/clone.sh
"${CURRENT_PATH}"/../band/bin/clone.sh
"${CURRENT_PATH}"/../coffee/bin/clone.sh
-7
View File
@@ -1,7 +0,0 @@
#!/bin/bash
source ./path.sh
"${CURRENT_PATH}"/../ability/bin/compile.sh
"${CURRENT_PATH}"/../band/bin/compile.sh
"${CURRENT_PATH}"/../coffee/bin/compile.sh
-7
View File
@@ -1,7 +0,0 @@
#!/bin/bash
source ./path.sh
"${CURRENT_PATH}"/../ability/bin/deploy.sh
"${CURRENT_PATH}"/../band/bin/deploy.sh
"${CURRENT_PATH}"/../coffee/bin/deploy.sh
-7
View File
@@ -1,7 +0,0 @@
#!/bin/bash
source ./path.sh
"${CURRENT_PATH}"/../ability/bin/install.sh
"${CURRENT_PATH}"/../band/bin/install.sh
"${CURRENT_PATH}"/../coffee/bin/install.sh
-15
View File
@@ -1,15 +0,0 @@
#!/bin/bash
CURRENT_PATH=$(pwd)
dirname $0 | grep "^/" >/dev/null
if [[ $? -eq 0 ]]; then
CURRENT_PATH=$(dirname $0)
else
dirname $0 | grep "^\." >/dev/null
retval=$?
if [[ ${retval} -eq 0 ]]; then
CURRENT_PATH=$(dirname $0 | sed "s#^.#$CURRENT_PATH#")
else
CURRENT_PATH=$(dirname $0 | sed "s#^#$CURRENT_PATH/#")
fi
fi
-10
View File
@@ -1,10 +0,0 @@
#!/bin/bash
source ./path.sh
ORIGIN="$1"
BRANCH="$2"
"${CURRENT_PATH}"/../ability/bin/pull.sh ${ORIGIN} ${BRANCH}
"${CURRENT_PATH}"/../band/bin/pull.sh ${ORIGIN} ${BRANCH}
"${CURRENT_PATH}"/../coffee/bin/pull.sh ${ORIGIN} ${BRANCH}
-7
View File
@@ -1,7 +0,0 @@
#!/bin/bash
source ./path.sh
"${CURRENT_PATH}"/../ability/bin/push-tag.sh
"${CURRENT_PATH}"/../band/bin/push-tag.sh
"${CURRENT_PATH}"/../coffee/bin/push-tag.sh
-10
View File
@@ -1,10 +0,0 @@
#!/bin/bash
source ./path.sh
ORIGIN="$1"
BRANCH="$2"
"${CURRENT_PATH}"/../ability/bin/push.sh ${ORIGIN} ${BRANCH}
"${CURRENT_PATH}"/../band/bin/push.sh ${ORIGIN} ${BRANCH}
"${CURRENT_PATH}"/../coffee/bin/push.sh ${ORIGIN} ${BRANCH}
-9
View File
@@ -1,9 +0,0 @@
#!/bin/bash
source ./path.sh
TAG_NAME="$1"
"${CURRENT_PATH}"/../ability/bin/tag.sh "${TAG_NAME}"
"${CURRENT_PATH}"/../band/bin/tag.sh "${TAG_NAME}"
"${CURRENT_PATH}"/../coffee/bin/tag.sh "${TAG_NAME}"
-7
View File
@@ -1,7 +0,0 @@
#!/bin/bash
source ./path.sh
"${CURRENT_PATH}"/../ability/bin/validate.sh
"${CURRENT_PATH}"/../band/bin/validate.sh
"${CURRENT_PATH}"/../coffee/bin/validate.sh
View File
-74
View File
@@ -1,74 +0,0 @@
# Created by .ignore support plugin (hsz.mobi)
### Maven template
target/
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
pom.xml.next
release.properties
dependency-reduced-pom.xml
buildNumber.properties
.mvn/timing.properties
.mvn/wrapper/maven-wrapper.jar
### IntelliJ IDEA ###
.idea/
.vscode
.project
.settings
*.suo
*.ntvs*
*.njsproj
*.sln
*.iws
*.iml
*.ipr
out/
# CMake
cmake-build-*/
# mpeltonen/sbt-idea plugin
.idea_modules/
# JIRA plugin
atlassian-ide-plugin.xml
# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties
# Compiled class file
*.classpath
*.factorypath
# Log file
*.log
# BlueJ files
*.ctxt
# Mobile Tools for Java (J2ME)
.mtj.tmp/
# Package Files #
*.war
*.ear
*.zip
*.tar.gz
*.rar
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
# 自定义
not-commit.md
application-prod.yml
.DS_Store
app.pid
rebel.xml
.rebel.xml.bak
.flattened-pom.xml
*.hprof
-42
View File
@@ -1,42 +0,0 @@
#!/bin/bash
source ./path.sh
cd "${CURRENT_PATH}"/../fkh-agent && git checkout $1 & \
cd "${CURRENT_PATH}"/../fkh-boot-dependencies && git checkout $1 & \
cd "${CURRENT_PATH}"/../fkh-boot-dependencies-v4 && git checkout $1 & \
cd "${CURRENT_PATH}"/../fkh-cache-spring-boot && git checkout $1 & \
cd "${CURRENT_PATH}"/../fkh-captcha-spring-boot && git checkout $1 & \
cd "${CURRENT_PATH}"/../fkh-cloud-spring-boot && git checkout $1 & \
cd "${CURRENT_PATH}"/../fkh-dingtalk-spring-boot && git checkout $1 & \
cd "${CURRENT_PATH}"/../fkh-doc-spring-boot && git checkout $1 & \
cd "${CURRENT_PATH}"/../fkh-dubbo-spring-boot && git checkout $1 & \
cd "${CURRENT_PATH}"/../fkh-email-spring-boot && git checkout $1 & \
cd "${CURRENT_PATH}"/../fkh-endpoint-spring-boot && git checkout $1 & \
cd "${CURRENT_PATH}"/../fkh-enhance-starter && git checkout $1 & \
cd "${CURRENT_PATH}"/../fkh-es-spring-boot && git checkout $1 & \
cd "${CURRENT_PATH}"/../fkh-eventbus-spring-boot && git checkout $1 & \
cd "${CURRENT_PATH}"/../fkh-feign && git checkout $1 & \
cd "${CURRENT_PATH}"/../fkh-id-spring-boot && git checkout $1 & \
cd "${CURRENT_PATH}"/../fkh-idempotent-spring-boot && git checkout $1 & \
cd "${CURRENT_PATH}"/../fkh-ip2region-spring-boot && git checkout $1 & \
cd "${CURRENT_PATH}"/../fkh-launcher-spring-boot && git checkout $1 & \
cd "${CURRENT_PATH}"/../fkh-logsystem-spring-boot && git checkout $1 & \
cd "${CURRENT_PATH}"/../fkh-metrics-spring-boot && git checkout $1 & \
cd "${CURRENT_PATH}"/../fkh-mongo-spring-boot && git checkout $1 & \
cd "${CURRENT_PATH}"/../fkh-mq-spring-boot && git checkout $1 & \
cd "${CURRENT_PATH}"/../fkh-mqtt-spring-boot && git checkout $1 & \
cd "${CURRENT_PATH}"/../fkh-mybatis-spring-boot && git checkout $1 & \
cd "${CURRENT_PATH}"/../fkh-openness-spring-boot && git checkout $1 & \
cd "${CURRENT_PATH}"/../fkh-pay-spring-boot && git checkout $1 & \
cd "${CURRENT_PATH}"/../fkh-qrcode-spring-boot && git checkout $1 & \
cd "${CURRENT_PATH}"/../fkh-rest-spring-boot && git checkout $1 & \
cd "${CURRENT_PATH}"/../fkh-retry-spring-boot && git checkout $1 & \
cd "${CURRENT_PATH}"/../fkh-schedule-spring-boot && git checkout $1 & \
cd "${CURRENT_PATH}"/../fkh-security-spring-boot && git checkout $1 & \
cd "${CURRENT_PATH}"/../fkh-sms-spring-boot && git checkout $1 & \
cd "${CURRENT_PATH}"/../fkh-template-spring-boot && git checkout $1 & \
cd "${CURRENT_PATH}"/../fkh-transaction-spring-boot && git checkout $1 & \
cd "${CURRENT_PATH}"/../fkh-websocket-spring-boot && git checkout $1 & \
cd "${CURRENT_PATH}"/../fkh-zookeeper-spring-boot && git checkout $1
-47
View File
@@ -1,47 +0,0 @@
#!/bin/bash
source ./path.sh
cd "${CURRENT_PATH}"/../fkh-boot-dependencies && ./mvnw -T 12C clean -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-boot-dependencies-v4 && ./mvnw -T 12C clean -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-logsystem-spring-boot && ./mvnw -T 12C clean -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-launcher-spring-boot && ./mvnw -T 12C clean -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-template-spring-boot && ./mvnw -T 12C clean -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-endpoint-spring-boot && ./mvnw -T 12C clean -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-doc-spring-boot && ./mvnw -T 12C clean -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-email-spring-boot && ./mvnw -T 12C clean -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-qrcode-spring-boot && ./mvnw -T 12C clean -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-captcha-spring-boot && ./mvnw -T 12C clean -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-sms-spring-boot && ./mvnw -T 12C clean -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-schedule-spring-boot && ./mvnw -T 12C clean -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-security-spring-boot && ./mvnw -T 12C clean -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-retry-spring-boot && ./mvnw -T 12C clean -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-cache-spring-boot && ./mvnw -T 12C clean -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-pay-spring-boot && ./mvnw -T 12C clean -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-id-spring-boot && ./mvnw -T 12C clean -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-idempotent-spring-boot && ./mvnw -T 12C clean -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-metrics-spring-boot && ./mvnw -T 12C clean -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-es-spring-boot && ./mvnw -T 12C clean -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-eventbus-spring-boot && ./mvnw -T 12C clean -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-mq-spring-boot && ./mvnw -T 12C clean -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-mongo-spring-boot && ./mvnw -T 12C clean -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-mybatis-spring-boot && ./mvnw -T 12C clean -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-transaction-spring-boot && ./mvnw -T 12C clean -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-auth-spring-boot && ./mvnw -T 12C clean -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-openness-spring-boot && ./mvnw -T 12C clean -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-rest-spring-boot && ./mvnw -T 12C clean -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-dubbo-spring-boot && ./mvnw -T 12C clean -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-cloud-spring-boot && ./mvnw -T 12C clean -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-enhance-starter && ./mvnw -T 12C clean -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-feign && ./mvnw -T 12C clean -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-agent && ./mvnw -T 12C clean -Dmaven.test.skip=true
-43
View File
@@ -1,43 +0,0 @@
#!/bin/bash
source ./path.sh
cd "${CURRENT_PATH}"/.. && \
git clone git@gitlab.server:v5-assembly/fkh-agent.git fkh-agent && \
git clone git@gitlab.server:v5-assembly/fkh-boot-dependencies.git fkh-boot-dependencies && \
git clone git@gitlab.server:v5-assembly/fkh-boot-dependencies-v4.git fkh-boot-dependencies-v4 && \
git clone git@gitlab.server:v5-assembly/fkh-cache-spring-boot.git fkh-cache-spring-boot && \
git clone git@gitlab.server:v5-assembly/fkh-captcha-spring-boot.git fkh-captcha-spring-boot && \
git clone git@gitlab.server:v5-assembly/fkh-cloud-spring-boot.git fkh-cloud-spring-boot && \
git clone git@gitlab.server:v5-assembly/fkh-dingtalk-spring-boot.git fkh-dingtalk-spring-boot && \
git clone git@gitlab.server:v5-assembly/fkh-doc-spring-boot.git fkh-doc-spring-boot && \
git clone git@gitlab.server:v5-assembly/fkh-dubbo-spring-boot.git fkh-dubbo-spring-boot && \
git clone git@gitlab.server:v5-assembly/fkh-email-spring-boot.git fkh-email-spring-boot && \
git clone git@gitlab.server:v5-assembly/fkh-endpoint-spring-boot.git fkh-endpoint-spring-boot && \
git clone git@gitlab.server:v5-assembly/fkh-enhance-starter.git fkh-enhance-starter && \
git clone git@gitlab.server:v5-assembly/fkh-es-spring-boot.git fkh-es-spring-boot && \
git clone git@gitlab.server:v5-assembly/fkh-eventbus-spring-boot.git fkh-eventbus-spring-boot && \
git clone git@gitlab.server:v5-assembly/fkh-feign.git fkh-feign && \
git clone git@gitlab.server:v5-assembly/fkh-id-spring-boot.git fkh-id-spring-boot && \
git clone git@gitlab.server:v5-assembly/fkh-idempotent-spring-boot.git fkh-idempotent-spring-boot && \
git clone git@gitlab.server:v5-assembly/fkh-ip2region-spring-boot.git fkh-ip2region-spring-boot && \
git clone git@gitlab.server:v5-assembly/fkh-launcher-spring-boot.git fkh-launcher-spring-boot && \
git clone git@gitlab.server:v5-assembly/fkh-logsystem-spring-boot.git fkh-logsystem-spring-boot && \
git clone git@gitlab.server:v5-assembly/fkh-metrics-spring-boot.git fkh-metrics-spring-boot && \
git clone git@gitlab.server:v5-assembly/fkh-mongo-spring-boot.git fkh-mongo-spring-boot && \
git clone git@gitlab.server:v5-assembly/fkh-mq-spring-boot.git fkh-mq-spring-boot && \
git clone git@gitlab.server:v5-assembly/fkh-mqtt-spring-boot.git fkh-mqtt-spring-boot && \
git clone git@gitlab.server:v5-assembly/fkh-mybatis-spring-boot.git fkh-mybatis-spring-boot && \
git clone git@gitlab.server:v5-assembly/fkh-openness-spring-boot.git fkh-openness-spring-boot && \
git clone git@gitlab.server:v5-assembly/fkh-pay-spring-boot.git fkh-pay-spring-boot && \
git clone git@gitlab.server:v5-assembly/fkh-qrcode-spring-boot.git fkh-qrcode-spring-boot && \
git clone git@gitlab.server:v5-assembly/fkh-rest-spring-boot.git fkh-rest-spring-boot && \
git clone git@gitlab.server:v5-assembly/fkh-retry-spring-boot.git fkh-retry-spring-boot && \
git clone git@gitlab.server:v5-assembly/fkh-schedule-spring-boot.git fkh-schedule-spring-boot && \
git clone git@gitlab.server:v5-assembly/fkh-security-spring-boot.git fkh-security-spring-boot && \
git clone git@gitlab.server:v5-assembly/fkh-sms-spring-boot.git fkh-sms-spring-boot && \
git clone git@gitlab.server:v5-assembly/fkh-template-spring-boot.git fkh-template-spring-boot && \
git clone git@gitlab.server:v5-assembly/fkh-transaction-spring-boot.git fkh-transaction-spring-boot && \
git clone git@gitlab.server:v5-assembly/fkh-websocket-spring-boot.git fkh-websocket-spring-boot && \
git clone git@gitlab.server:v5-assembly/fkh-zookeeper-spring-boot.git fkh-zookeeper-spring-boot
-5
View File
@@ -1,5 +0,0 @@
#!/bin/bash
source ./path.sh
./compile.sh && ./compile-sample.sh
-32
View File
@@ -1,32 +0,0 @@
#!/bin/bash
source ./path.sh
cd "${CURRENT_PATH}"/../fkh-cache-spring-boot/fkh-cache-spring-boot-sample && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-captcha-spring-boot/fkh-captcha-spring-boot-sample && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-cloud-spring-boot/fkh-cloud-spring-boot-sample && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-doc-spring-boot/fkh-doc-spring-boot-sample && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-dubbo-spring-boot/fkh-dubbo-spring-boot-sample && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-endpoint-spring-boot/fkh-endpoint-spring-boot-sample && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-eventbus-spring-boot/fkh-eventbus-spring-boot-sample && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-launcher-spring-boot/fkh-launcher-spring-boot-sample && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-logsystem-spring-boot/fkh-logsystem-spring-boot-sample && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-mongo-spring-boot/fkh-mongo-spring-boot-sample && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-mq-spring-boot/fkh-mq-spring-boot-sample && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-mybatis-spring-boot/fkh-mybatis-spring-boot-sample && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-pay-spring-boot/fkh-pay-spring-boot-sample && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-qrcode-spring-boot/fkh-qrcode-spring-boot-sample && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-rest-spring-boot/fkh-rest-spring-boot-sample && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-schedule-spring-boot/fkh-schedule-spring-boot-sample && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-security-spring-boot/fkh-security-spring-boot-sample && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-sms-spring-boot/fkh-sms-spring-boot-sample && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-template-spring-boot/fkh-template-spring-boot-sample && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-transaction-spring-boot/fkh-transaction-spring-boot-sample && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-openness-spring-boot/fkh-openness-spring-boot-sample && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-idempotent-spring-boot/fkh-idempotent-spring-boot-sample && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-metrics-spring-boot/fkh-metrics-spring-boot-sample && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-feign/fkh-feign-spring-boot-sample && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-agent && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-agent/fkh-example-agent && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-agent/fkh-agent-spring-boot/fkh-agent-spring-boot-sample && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
-47
View File
@@ -1,47 +0,0 @@
#!/bin/bash
source ./path.sh
cd "${CURRENT_PATH}"/../fkh-boot-dependencies && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-boot-dependencies-v4 && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-logsystem-spring-boot && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-launcher-spring-boot && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-template-spring-boot && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-endpoint-spring-boot && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-doc-spring-boot && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-email-spring-boot && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-qrcode-spring-boot && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-captcha-spring-boot && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-sms-spring-boot && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-schedule-spring-boot && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-security-spring-boot && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-retry-spring-boot && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-cache-spring-boot && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-pay-spring-boot && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-id-spring-boot && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-metrics-spring-boot && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-idempotent-spring-boot && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-es-spring-boot && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-eventbus-spring-boot && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-mq-spring-boot && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-mongo-spring-boot && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-mybatis-spring-boot && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-transaction-spring-boot && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-auth-spring-boot && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-openness-spring-boot && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-rest-spring-boot && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-dubbo-spring-boot && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-cloud-spring-boot && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-enhance-starter && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-feign && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-agent && ./mvnw -T 12C clean compile -Dmaven.test.skip=true
-48
View File
@@ -1,48 +0,0 @@
#!/bin/bash
source ./path.sh
# todo-dong4j : (2021-10-30 14:38) [重构]
cd "${CURRENT_PATH}"/../fkh-boot-dependencies && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-boot-dependencies-v4 && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-logsystem-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-launcher-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-id-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-endpoint-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-feign && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-agent && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true -pl fkh-agent-basic -am
cd "${CURRENT_PATH}"/../fkh-agent && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true -pl fkh-agent-adapter -am
cd "${CURRENT_PATH}"/../fkh-agent/fkh-agent-spring-boot/fkh-agent-spring-boot-core && ../../mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true -pl fkh-agent-common -am
cd "${CURRENT_PATH}"/../fkh-email-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-qrcode-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-captcha-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-sms-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-schedule-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-security-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-metrics-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-retry-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-cache-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-pay-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-idempotent-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-es-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-eventbus-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-mq-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-mongo-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-mybatis-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-transaction-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-ip2region-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-dubbo-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-cloud-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-dingtalk-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-mqtt-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-websocket-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-zookeeper-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-doc-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-rest-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-openness-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-agent && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-enhance-starter && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
-48
View File
@@ -1,48 +0,0 @@
#!/bin/bash
source ./path.sh
# todo-dong4j : (2021-10-30 14:38) [重构]
cd "${CURRENT_PATH}"/../fkh-boot-dependencies && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-boot-dependencies-v4 && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-logsystem-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-launcher-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-id-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-endpoint-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-feign && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-agent && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true -pl fkh-agent-basic -am
cd "${CURRENT_PATH}"/../fkh-agent && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true -pl fkh-agent-adapter -am
cd "${CURRENT_PATH}"/../fkh-agent/fkh-agent-spring-boot/fkh-agent-spring-boot-core && ../../mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true -pl fkh-agent-common -am
cd "${CURRENT_PATH}"/../fkh-email-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-qrcode-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-captcha-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-sms-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-schedule-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-security-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-metrics-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-retry-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-cache-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-pay-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-idempotent-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-es-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-eventbus-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-mq-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-mongo-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-mybatis-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-transaction-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-ip2region-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-dubbo-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-cloud-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-dingtalk-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-mqtt-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-websocket-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-zookeeper-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-doc-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-rest-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-openness-spring-boot && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-agent && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-enhance-starter && ./mvnw -T 12C clean deploy -Dcheckstyle.skip=true -Dpmd.skip=true
-48
View File
@@ -1,48 +0,0 @@
#!/bin/bash
source ./path.sh
# todo-dong4j : (2021-10-30 14:38) [重构]
cd "${CURRENT_PATH}"/../fkh-boot-dependencies && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-boot-dependencies-v4 && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-logsystem-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-launcher-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-id-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-endpoint-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-feign && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-agent && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true -pl fkh-agent-basic -am
cd "${CURRENT_PATH}"/../fkh-agent && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true -pl fkh-agent-adapter -am
cd "${CURRENT_PATH}"/../fkh-agent/fkh-agent-spring-boot/fkh-agent-spring-boot-core && ../../mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true -pl fkh-agent-common -am
cd "${CURRENT_PATH}"/../fkh-email-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-qrcode-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-captcha-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-sms-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-schedule-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-security-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-metrics-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-retry-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-cache-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-pay-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-idempotent-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-es-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-eventbus-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-mq-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-mongo-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-mybatis-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-transaction-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-ip2region-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-dubbo-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-cloud-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-dingtalk-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-mqtt-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-websocket-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-zookeeper-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-doc-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-rest-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-openness-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-agent && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-enhance-starter && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
-48
View File
@@ -1,48 +0,0 @@
#!/bin/bash
source ./path.sh
# todo-dong4j : (2021-10-30 14:38) [重构]
cd "${CURRENT_PATH}"/../fkh-boot-dependencies && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-boot-dependencies-v4 && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-logsystem-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-launcher-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-id-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-endpoint-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-feign && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-agent && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true -pl fkh-agent-basic -am
cd "${CURRENT_PATH}"/../fkh-agent && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true -pl fkh-agent-adapter -am
cd "${CURRENT_PATH}"/../fkh-agent/fkh-agent-spring-boot/fkh-agent-spring-boot-core && ../../mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true -pl fkh-agent-common -am
cd "${CURRENT_PATH}"/../fkh-email-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-qrcode-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-captcha-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-sms-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-schedule-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-security-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-metrics-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-retry-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-cache-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-pay-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-idempotent-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-es-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-eventbus-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-mq-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-mongo-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-mybatis-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-transaction-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-ip2region-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-dubbo-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-cloud-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-dingtalk-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-mqtt-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-websocket-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-zookeeper-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-doc-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-rest-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-openness-spring-boot && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-agent && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
cd "${CURRENT_PATH}"/../fkh-enhance-starter && ./mvnw -T 12C clean install -Dcheckstyle.skip=true -Dpmd.skip=true
-15
View File
@@ -1,15 +0,0 @@
#!/bin/bash
CURRENT_PATH=$(pwd)
dirname $0 | grep "^/" >/dev/null
if [[ $? -eq 0 ]]; then
CURRENT_PATH=$(dirname $0)
else
dirname $0 | grep "^\." >/dev/null
retval=$?
if [[ ${retval} -eq 0 ]]; then
CURRENT_PATH=$(dirname $0 | sed "s#^.#$CURRENT_PATH#")
else
CURRENT_PATH=$(dirname $0 | sed "s#^#$CURRENT_PATH/#")
fi
fi
-44
View File
@@ -1,44 +0,0 @@
#!/usr/bin/env bash
source ./path.sh
ORIGIN="$1"
BRANCH="$2"
cd "${CURRENT_PATH}"/../fkh-agent && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-auth-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-openness-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-boot-dependencies && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-boot-dependencies-v4 && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-cache-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-captcha-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-cloud-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-dingtalk-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-doc-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-dubbo-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-email-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-endpoint-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-enhance-starter && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-eventbus-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-feign && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-launcher-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-logsystem-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-mongo-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-mq-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-mqtt-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-mybatis-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-retry-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-pay-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-id-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-metrics-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-idempotent-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-es-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-qrcode-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-rest-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-schedule-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-security-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-sms-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-template-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-transaction-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-websocket-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-zookeeper-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
-42
View File
@@ -1,42 +0,0 @@
#!/bin/bash
source ./path.sh
cd "${CURRENT_PATH}"/../fkh-agent && git push --tags
cd "${CURRENT_PATH}"/../fkh-boot-dependencies && git push --tags
cd "${CURRENT_PATH}"/../fkh-boot-dependencies-v4 && git push --tags
cd "${CURRENT_PATH}"/../fkh-cache-spring-boot && git push --tags
cd "${CURRENT_PATH}"/../fkh-captcha-spring-boot && git push --tags
cd "${CURRENT_PATH}"/../fkh-cloud-spring-boot && git push --tags
cd "${CURRENT_PATH}"/../fkh-dingtalk-spring-boot && git push --tags
cd "${CURRENT_PATH}"/../fkh-doc-spring-boot && git push --tags
cd "${CURRENT_PATH}"/../fkh-dubbo-spring-boot && git push --tags
cd "${CURRENT_PATH}"/../fkh-email-spring-boot && git push --tags
cd "${CURRENT_PATH}"/../fkh-endpoint-spring-boot && git push --tags
cd "${CURRENT_PATH}"/../fkh-enhance-starter && git push --tags
cd "${CURRENT_PATH}"/../fkh-es-spring-boot && git push --tags
cd "${CURRENT_PATH}"/../fkh-eventbus-spring-boot && git push --tags
cd "${CURRENT_PATH}"/../fkh-feign && git push --tags
cd "${CURRENT_PATH}"/../fkh-id-spring-boot && git push --tags
cd "${CURRENT_PATH}"/../fkh-idempotent-spring-boot && git push --tags
cd "${CURRENT_PATH}"/../fkh-ip2region-spring-boot && git push --tags
cd "${CURRENT_PATH}"/../fkh-launcher-spring-boot && git push --tags
cd "${CURRENT_PATH}"/../fkh-logsystem-spring-boot && git push --tags
cd "${CURRENT_PATH}"/../fkh-metrics-spring-boot && git push --tags
cd "${CURRENT_PATH}"/../fkh-mongo-spring-boot && git push --tags
cd "${CURRENT_PATH}"/../fkh-mq-spring-boot && git push --tags
cd "${CURRENT_PATH}"/../fkh-mqtt-spring-boot && git push --tags
cd "${CURRENT_PATH}"/../fkh-mybatis-spring-boot && git push --tags
cd "${CURRENT_PATH}"/../fkh-openness-spring-boot && git push --tags
cd "${CURRENT_PATH}"/../fkh-pay-spring-boot && git push --tags
cd "${CURRENT_PATH}"/../fkh-qrcode-spring-boot && git push --tags
cd "${CURRENT_PATH}"/../fkh-rest-spring-boot && git push --tags
cd "${CURRENT_PATH}"/../fkh-retry-spring-boot && git push --tags
cd "${CURRENT_PATH}"/../fkh-schedule-spring-boot && git push --tags
cd "${CURRENT_PATH}"/../fkh-security-spring-boot && git push --tags
cd "${CURRENT_PATH}"/../fkh-sms-spring-boot && git push --tags
cd "${CURRENT_PATH}"/../fkh-template-spring-boot && git push --tags
cd "${CURRENT_PATH}"/../fkh-transaction-spring-boot && git push --tags
cd "${CURRENT_PATH}"/../fkh-websocket-spring-boot && git push --tags
cd "${CURRENT_PATH}"/../fkh-zookeeper-spring-boot && git push --tags
-81
View File
@@ -1,81 +0,0 @@
#!/usr/bin/env bash
source ./path.sh
ORIGIN="$1"
BRANCH="$2"
cd "${CURRENT_PATH}"/../fkh-agent && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-agent && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain ${ORIGIN} refs/heads/${BRANCH}:${BRANCH} --tags
cd "${CURRENT_PATH}"/../fkh-auth-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-auth-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain ${ORIGIN} refs/heads/${BRANCH}:${BRANCH} --tags
cd "${CURRENT_PATH}"/../fkh-openness-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-openness-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain ${ORIGIN} refs/heads/${BRANCH}:${BRANCH} --tags
cd "${CURRENT_PATH}"/../fkh-boot-dependencies && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-boot-dependencies && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain ${ORIGIN} refs/heads/${BRANCH}:${BRANCH} --tags
cd "${CURRENT_PATH}"/../fkh-boot-dependencies-v4 && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-boot-dependencies-v4 && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain ${ORIGIN} refs/heads/${BRANCH}:${BRANCH} --tags
cd "${CURRENT_PATH}"/../fkh-cache-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-cache-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain ${ORIGIN} refs/heads/${BRANCH}:${BRANCH} --tags
cd "${CURRENT_PATH}"/../fkh-captcha-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-captcha-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain ${ORIGIN} refs/heads/${BRANCH}:${BRANCH} --tags
cd "${CURRENT_PATH}"/../fkh-cloud-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-cloud-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain ${ORIGIN} refs/heads/${BRANCH}:${BRANCH} --tags
cd "${CURRENT_PATH}"/../fkh-dingtalk-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-dingtalk-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain ${ORIGIN} refs/heads/${BRANCH}:${BRANCH} --tags
cd "${CURRENT_PATH}"/../fkh-doc-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-doc-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain ${ORIGIN} refs/heads/${BRANCH}:${BRANCH} --tags
cd "${CURRENT_PATH}"/../fkh-dubbo-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-dubbo-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain ${ORIGIN} refs/heads/${BRANCH}:${BRANCH} --tags
cd "${CURRENT_PATH}"/../fkh-email-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-email-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain ${ORIGIN} refs/heads/${BRANCH}:${BRANCH} --tags
cd "${CURRENT_PATH}"/../fkh-idempotent-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-idempotent-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain ${ORIGIN} refs/heads/${BRANCH}:${BRANCH} --tags
cd "${CURRENT_PATH}"/../fkh-metrics-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-metrics-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain ${ORIGIN} refs/heads/${BRANCH}:${BRANCH} --tags
cd "${CURRENT_PATH}"/../fkh-es-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-es-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain ${ORIGIN} refs/heads/${BRANCH}:${BRANCH} --tags
cd "${CURRENT_PATH}"/../fkh-endpoint-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-endpoint-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain ${ORIGIN} refs/heads/${BRANCH}:${BRANCH} --tags
cd "${CURRENT_PATH}"/../fkh-enhance-starter && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-enhance-starter && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain ${ORIGIN} refs/heads/${BRANCH}:${BRANCH} --tags
cd "${CURRENT_PATH}"/../fkh-eventbus-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-eventbus-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain ${ORIGIN} refs/heads/${BRANCH}:${BRANCH} --tags
cd "${CURRENT_PATH}"/../fkh-feign && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-feign && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain ${ORIGIN} refs/heads/${BRANCH}:${BRANCH} --tags
cd "${CURRENT_PATH}"/../fkh-launcher-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-launcher-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain ${ORIGIN} refs/heads/${BRANCH}:${BRANCH} --tags
cd "${CURRENT_PATH}"/../fkh-logsystem-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-logsystem-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain ${ORIGIN} refs/heads/${BRANCH}:${BRANCH} --tags
cd "${CURRENT_PATH}"/../fkh-mongo-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-mongo-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain ${ORIGIN} refs/heads/${BRANCH}:${BRANCH} --tags
cd "${CURRENT_PATH}"/../fkh-mq-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-mq-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain ${ORIGIN} refs/heads/${BRANCH}:${BRANCH} --tags
cd "${CURRENT_PATH}"/../fkh-mqtt-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-mqtt-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain ${ORIGIN} refs/heads/${BRANCH}:${BRANCH} --tags
cd "${CURRENT_PATH}"/../fkh-mybatis-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-mybatis-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain ${ORIGIN} refs/heads/${BRANCH}:${BRANCH} --tags
cd "${CURRENT_PATH}"/../fkh-pay-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-pay-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain ${ORIGIN} refs/heads/${BRANCH}:${BRANCH} --tags
cd "${CURRENT_PATH}"/../fkh-id-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-id-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain ${ORIGIN} refs/heads/${BRANCH}:${BRANCH} --tags
cd "${CURRENT_PATH}"/../fkh-retry-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-retry-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain ${ORIGIN} refs/heads/${BRANCH}:${BRANCH} --tags
cd "${CURRENT_PATH}"/../fkh-qrcode-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-qrcode-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain ${ORIGIN} refs/heads/${BRANCH}:${BRANCH} --tags
cd "${CURRENT_PATH}"/../fkh-rest-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-rest-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain ${ORIGIN} refs/heads/${BRANCH}:${BRANCH} --tags
cd "${CURRENT_PATH}"/../fkh-schedule-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-schedule-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain ${ORIGIN} refs/heads/${BRANCH}:${BRANCH} --tags
cd "${CURRENT_PATH}"/../fkh-security-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-security-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain ${ORIGIN} refs/heads/${BRANCH}:${BRANCH} --tags
cd "${CURRENT_PATH}"/../fkh-sms-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-sms-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain ${ORIGIN} refs/heads/${BRANCH}:${BRANCH} --tags
cd "${CURRENT_PATH}"/../fkh-template-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-template-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain ${ORIGIN} refs/heads/${BRANCH}:${BRANCH} --tags
cd "${CURRENT_PATH}"/../fkh-transaction-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-transaction-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain ${ORIGIN} refs/heads/${BRANCH}:${BRANCH} --tags
cd "${CURRENT_PATH}"/../fkh-websocket-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-websocket-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain ${ORIGIN} refs/heads/${BRANCH}:${BRANCH} --tags
cd "${CURRENT_PATH}"/../fkh-zookeeper-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false -c core.commentChar= pull --no-stat -v --progress ${ORIGIN} ${BRANCH}
cd "${CURRENT_PATH}"/../fkh-zookeeper-spring-boot && git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain ${ORIGIN} refs/heads/${BRANCH}:${BRANCH} --tags
-44
View File
@@ -1,44 +0,0 @@
#!/bin/bash
source ./path.sh
TAG_NAME="$1"
cd "${CURRENT_PATH}"/../fkh-agent && git tag "${TAG_NAME}"
cd "${CURRENT_PATH}"/../fkh-boot-dependencies && git tag "${TAG_NAME}"
cd "${CURRENT_PATH}"/../fkh-boot-dependencies-v4 && git tag "${TAG_NAME}"
cd "${CURRENT_PATH}"/../fkh-cache-spring-boot && git tag "${TAG_NAME}"
cd "${CURRENT_PATH}"/../fkh-captcha-spring-boot && git tag "${TAG_NAME}"
cd "${CURRENT_PATH}"/../fkh-cloud-spring-boot && git tag "${TAG_NAME}"
cd "${CURRENT_PATH}"/../fkh-dingtalk-spring-boot && git tag "${TAG_NAME}"
cd "${CURRENT_PATH}"/../fkh-doc-spring-boot && git tag "${TAG_NAME}"
cd "${CURRENT_PATH}"/../fkh-dubbo-spring-boot && git tag "${TAG_NAME}"
cd "${CURRENT_PATH}"/../fkh-email-spring-boot && git tag "${TAG_NAME}"
cd "${CURRENT_PATH}"/../fkh-endpoint-spring-boot && git tag "${TAG_NAME}"
cd "${CURRENT_PATH}"/../fkh-enhance-starter && git tag "${TAG_NAME}"
cd "${CURRENT_PATH}"/../fkh-es-spring-boot && git tag "${TAG_NAME}"
cd "${CURRENT_PATH}"/../fkh-eventbus-spring-boot && git tag "${TAG_NAME}"
cd "${CURRENT_PATH}"/../fkh-feign && git tag "${TAG_NAME}"
cd "${CURRENT_PATH}"/../fkh-id-spring-boot && git tag "${TAG_NAME}"
cd "${CURRENT_PATH}"/../fkh-idempotent-spring-boot && git tag "${TAG_NAME}"
cd "${CURRENT_PATH}"/../fkh-ip2region-spring-boot && git tag "${TAG_NAME}"
cd "${CURRENT_PATH}"/../fkh-launcher-spring-boot && git tag "${TAG_NAME}"
cd "${CURRENT_PATH}"/../fkh-logsystem-spring-boot && git tag "${TAG_NAME}"
cd "${CURRENT_PATH}"/../fkh-metrics-spring-boot && git tag "${TAG_NAME}"
cd "${CURRENT_PATH}"/../fkh-mongo-spring-boot && git tag "${TAG_NAME}"
cd "${CURRENT_PATH}"/../fkh-mq-spring-boot && git tag "${TAG_NAME}"
cd "${CURRENT_PATH}"/../fkh-mqtt-spring-boot && git tag "${TAG_NAME}"
cd "${CURRENT_PATH}"/../fkh-mybatis-spring-boot && git tag "${TAG_NAME}"
cd "${CURRENT_PATH}"/../fkh-openness-spring-boot && git tag "${TAG_NAME}"
cd "${CURRENT_PATH}"/../fkh-pay-spring-boot && git tag "${TAG_NAME}"
cd "${CURRENT_PATH}"/../fkh-qrcode-spring-boot && git tag "${TAG_NAME}"
cd "${CURRENT_PATH}"/../fkh-rest-spring-boot && git tag "${TAG_NAME}"
cd "${CURRENT_PATH}"/../fkh-retry-spring-boot && git tag "${TAG_NAME}"
cd "${CURRENT_PATH}"/../fkh-schedule-spring-boot && git tag "${TAG_NAME}"
cd "${CURRENT_PATH}"/../fkh-security-spring-boot && git tag "${TAG_NAME}"
cd "${CURRENT_PATH}"/../fkh-sms-spring-boot && git tag "${TAG_NAME}"
cd "${CURRENT_PATH}"/../fkh-template-spring-boot && git tag "${TAG_NAME}"
cd "${CURRENT_PATH}"/../fkh-transaction-spring-boot && git tag "${TAG_NAME}"
cd "${CURRENT_PATH}"/../fkh-websocket-spring-boot && git tag "${TAG_NAME}"
cd "${CURRENT_PATH}"/../fkh-zookeeper-spring-boot && git tag "${TAG_NAME}"
-5
View File
@@ -1,5 +0,0 @@
#!/bin/bash
source ./path.sh
cd "${CURRENT_PATH}"/../fkh-cloud-spring-boot && ./mvnw clean test >> ./mavne-test.log &
View File
-51
View File
@@ -1,51 +0,0 @@
#!/bin/bash
source ./path.sh
cd "${CURRENT_PATH}"/../fkh-boot-dependencies && ./mvnw -T 12C clean validate -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-boot-dependencies-v4 && ./mvnw -T 12C clean validate -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-logsystem-spring-boot && ./mvnw -T 12C clean validate -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-launcher-spring-boot && ./mvnw -T 12C clean validate -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-template-spring-boot && ./mvnw -T 12C clean validate -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-endpoint-spring-boot && ./mvnw -T 12C clean validate -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-doc-spring-boot && ./mvnw -T 12C clean validate -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-email-spring-boot && ./mvnw -T 12C clean validate -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-qrcode-spring-boot && ./mvnw -T 12C clean validate -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-captcha-spring-boot && ./mvnw -T 12C clean validate -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-sms-spring-boot && ./mvnw -T 12C clean validate -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-schedule-spring-boot && ./mvnw -T 12C clean validate -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-security-spring-boot && ./mvnw -T 12C clean validate -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-retry-spring-boot && ./mvnw -T 12C clean validate -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-cache-spring-boot && ./mvnw -T 12C clean validate -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-pay-spring-boot && ./mvnw -T 12C clean validate -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-id-spring-boot && ./mvnw -T 12C clean validate -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-idempotent-spring-boot && ./mvnw -T 12C clean validate -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-metrics-spring-boot && ./mvnw -T 12C clean validate -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-es-spring-boot && ./mvnw -T 12C clean validate -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-eventbus-spring-boot && ./mvnw -T 12C clean validate -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-mq-spring-boot && ./mvnw -T 12C clean validate -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-mqtt-spring-boot && ./mvnw -T 12C clean validate -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-mongo-spring-boot && ./mvnw -T 12C clean validate -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-mybatis-spring-boot && ./mvnw -T 12C clean validate -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-transaction-spring-boot && ./mvnw -T 12C clean validate -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-websocket-spring-boot && ./mvnw -T 12C clean validate -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-zookeeper-spring-boot && ./mvnw -T 12C clean validate -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-auth-spring-boot && ./mvnw -T 12C clean validate -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-openness-spring-boot && ./mvnw -T 12C clean validate -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-rest-spring-boot && ./mvnw -T 12C clean validate -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-dubbo-spring-boot && ./mvnw -T 12C clean validate -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-cloud-spring-boot && ./mvnw -T 12C clean validate -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-dingtalk-spring-boot && ./mvnw -T 12C clean validate -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-enhance-starter && ./mvnw -T 12C clean validate -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-feign && ./mvnw -T 12C clean validate -Dmaven.test.skip=true
cd "${CURRENT_PATH}"/../fkh-agent && ./mvnw -T 12C clean validate -Dmaven.test.skip=true
File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 77 KiB

Submodule coffee/fkh-agent deleted from a4ae86ba74
Submodule coffee/fkh-boot-dependencies deleted from 808129a8c8
Submodule coffee/fkh-boot-dependencies-v4 deleted from 693cbe1bce
Submodule coffee/fkh-cache-spring-boot deleted from ee90a547b3
Submodule coffee/fkh-captcha-spring-boot deleted from f2296541aa
Submodule coffee/fkh-cloud-spring-boot deleted from 236893b947
Submodule coffee/fkh-dingtalk-spring-boot deleted from 8bf7ff89bc
Submodule coffee/fkh-doc-spring-boot deleted from 929579e5ce
Submodule coffee/fkh-dubbo-spring-boot deleted from ee711e7e3a
Submodule coffee/fkh-email-spring-boot deleted from 4167a9f797
Submodule coffee/fkh-endpoint-spring-boot deleted from 4335031c97
Submodule coffee/fkh-enhance-starter deleted from f409e65afd
Submodule coffee/fkh-es-spring-boot deleted from 4cd6fb5ee8
Submodule coffee/fkh-eventbus-spring-boot deleted from cc098d88e0
Submodule coffee/fkh-feign deleted from b24f788853
Submodule coffee/fkh-id-spring-boot deleted from 3ad34ba695
Submodule coffee/fkh-idempotent-spring-boot deleted from 299061867b
Submodule coffee/fkh-ip2region-spring-boot deleted from 248f8aa446
Submodule coffee/fkh-launcher-spring-boot deleted from f819ba3ad9
Submodule coffee/fkh-logsystem-spring-boot deleted from dfad20d331
Submodule coffee/fkh-metrics-spring-boot deleted from 15d9c1e3b1
Submodule coffee/fkh-mongo-spring-boot deleted from 0b8542fb8c
Submodule coffee/fkh-mq-spring-boot deleted from afbfae3fe1
Submodule coffee/fkh-mqtt-spring-boot deleted from 8f9eb0664a
Submodule coffee/fkh-mybatis-spring-boot deleted from 0cf3b94d39
Submodule coffee/fkh-openness-spring-boot deleted from baf2f4674f
Submodule coffee/fkh-pay-spring-boot deleted from ad69bcc7a6
Submodule coffee/fkh-qrcode-spring-boot deleted from 9970e7a450

Some files were not shown because too many files have changed in this diff Show More