mirror of
https://gitee.com/dromara/Jpom.git
synced 2024-11-30 10:58:14 +08:00
77 lines
2.8 KiB
Bash
77 lines
2.8 KiB
Bash
#!/bin/bash
|
|
#
|
|
# The MIT License (MIT)
|
|
#
|
|
# Copyright (c) 2019 Code Technology Studio
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
# this software and associated documentation files (the "Software"), to deal in
|
|
# the Software without restriction, including without limitation the rights to
|
|
# use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
# the Software, and to permit persons to whom the Software is furnished to do so,
|
|
# subject to the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be included in all
|
|
# copies or substantial portions of the Software.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
# FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
# COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
# IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
#
|
|
|
|
#-----------------------------------------------------------
|
|
# 此脚本用于每次升级时替换相应位置的版本号
|
|
#-----------------------------------------------------------
|
|
|
|
set -o errexit
|
|
|
|
pwd=$(pwd)
|
|
|
|
echo "当前路径:${pwd}"
|
|
|
|
if [ -n "$1" ];then
|
|
new_version="$1"
|
|
old_version=`cat ${pwd}/../docs/version.txt`
|
|
echo "$old_version 替换为新版本 $new_version"
|
|
else
|
|
# 参数错误,退出
|
|
echo "ERROR: 请指定新版本!"
|
|
exit
|
|
fi
|
|
|
|
if [ ! -n "$old_version" ]; then
|
|
echo "ERROR: 旧版本不存在,请确认 /docs/version.txt 中信息正确"
|
|
exit
|
|
fi
|
|
|
|
# 替换所有模块pom.xml中的版本
|
|
cd ../ && mvn versions:set -DnewVersion=$1
|
|
|
|
# 替换 jpom.io 主页版本号
|
|
sed -i.bak "s/${old_version}/${new_version}/g" $pwd/../docs/js/version.js
|
|
# 替换远程更新包的版本号
|
|
sed -i.bak "s/${old_version}/${new_version}/g" $pwd/../docs/versions.json
|
|
# 替换 docker 中的版本
|
|
sed -i.bak "s/${old_version}/${new_version}/g" $pwd/../.env
|
|
|
|
# 替换 Dockerfile 中的版本
|
|
sed -i.bak "s/${old_version}/${new_version}/g" $pwd/../modules/server/Dockerfile
|
|
sed -i.bak "s/${old_version}/${new_version}/g" $pwd/../modules/agent/Dockerfile
|
|
sed -i.bak "s/${old_version}/${new_version}/g" $pwd/../script/docker.sh
|
|
sed -i.bak "s/${old_version}/${new_version}/g" $pwd/../modules/server/DockerfileRelease
|
|
|
|
# logo
|
|
sed -i.bak "s/${old_version}/${new_version}/g" $pwd/../modules/common/src/main/resources/jpom-logo.txt
|
|
|
|
# vue version
|
|
sed -i.bak "s/${old_version}/${new_version}/g" $pwd/../web-vue/package.json
|
|
|
|
# release-sha1sum.sh
|
|
sed -i.bak "s/${old_version}/${new_version}/g" $pwd/release-sha1sum.sh
|
|
|
|
# 保留新版本号
|
|
echo "$new_version" > $pwd/../docs/version.txt
|