2
0

feat: license服务端

This commit is contained in:
caiyuchao
2025-04-15 18:32:33 +08:00
parent 64da1b66d3
commit 4c42a7f969
6 changed files with 88 additions and 0 deletions

View File

@@ -8,6 +8,7 @@ BERootDir=${GitRootDir}/be.wfc
FERootDir=${GitRootDir}/fe.wfc
FEUserRootDir=${GitRootDir}/fe.wfc.user
BuildRootDir=${GitRootDir}/build.wfc
LicenseRootDir=${GitRootDir}/license.wfc
WFCWorkDir=/opt/wfc
BuildDockerDir=${BuildRootDir}/build/docker
@@ -82,6 +83,8 @@ pre-git-pull(){
git pull
cd ${BuildRootDir}
git pull
cd ${LicenseRootDir}
git pull
}
pre-build-deb(){
@@ -111,6 +114,9 @@ build-jar(){
cd ${BERootDir}
# git pull
mvn clean package -Dmaven.test.skip=true -P prod
cd ${LicenseRootDir}
# git pull
mvn clean package -Dmaven.test.skip=true
}
pre-build-src-tar(){
@@ -123,6 +129,8 @@ pre-build-src-tar(){
clean-jar(){
cd ${BERootDir}
mvn clean
cd ${LicenseRootDir}
mvn clean
}
build-dist(){