1 Star 0 Fork 121

khiker/mybatis-plus-ext

forked from dromara/mybatis-plus-ext 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
upgrade.sh 1.04 KB
一键复制 编辑 原始数据 按行查看 历史
唐振超 提交于 2024-10-30 15:10 . 版本升级:3.5.8-EXT722
# 版本升级
version=3.5.8-EXT722
echo "开始替换pom.xml的版本号:${version}"
mvn versions:set -DnewVersion=${version}
echo "开始commit到本地仓库:${version}"
git commit -am "版本升级:${version}"
tagName=v${version}
echo "开始打tag:${tagName}"
git rev-parse --verify ${tagName} >/dev/null 2>&1
if [ $? -eq 0 ]; then
git tag -d ${tagName}
echo "本地标签${tagName}已删除"
fi
if git ls-remote --tags | grep -q "refs/tags/${tagName}"; then
git push origin --delete ${tagName}
echo "远程标签${tagName}已删除"
fi
echo "新建标签:${tagName}"
git tag -a ${tagName} -m "版本号:${version}"
echo "开始提交到远程git仓库:${version}"
git push origin main --tags
echo "开始发布新的版本到maven仓库:${version}"
mvn clean deploy -Dmaven.test.skip=true -pl mybatis-plus-ext-autotable,mybatis-plus-ext-bind,mybatis-plus-ext-core,mybatis-plus-ext-condition,mybatis-plus-ext-datasource,mybatis-plus-ext-processor,mybatis-plus-ext-spring-boot-starter,mybatis-plus-ext-spring-boot3-starter -am
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/khiker/mybatis-plus-ext.git
git@gitee.com:khiker/mybatis-plus-ext.git
khiker
mybatis-plus-ext
mybatis-plus-ext
main

搜索帮助