1 Star 0 Fork 0

doom/spring-cloud-stream-binder-kafka

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
update-version.sh 794 Bytes
一键复制 编辑 原始数据 按行查看 历史
Soby Chacko 提交于 2017-09-29 10:20 . GH-193: Make 2.0 branch up to date
#!/bin/bash
#Execute this script from local checkout of spring cloud stream
./mvnw versions:update-parent -DparentVersion=[0.0.1,$2] -Pspring -DgenerateBackupPoms=false -DallowSnapshots=true
./mvnw versions:set -DnewVersion=$1 -DgenerateBackupPoms=false
lines=$(find . -name 'pom.xml' | xargs egrep "SNAPSHOT|M[0-9]|RC[0-9]" | grep -v regex | wc -l)
if [ $lines -eq 0 ]; then
echo "No snapshots found"
else
echo "Snapshots found."
fi
lines=$(find . -name 'pom.xml' | xargs egrep "M[0-9]" | grep -v regex | wc -l)
if [ $lines -eq 0 ]; then
echo "No milestones found"
else
echo "Milestones found."
fi
lines=$(find . -name 'pom.xml' | xargs egrep "RC[0-9]" | grep -v regex | wc -l)
if [ $lines -eq 0 ]; then
echo "No release candidates found"
else
echo "Release candidates found."
fi
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/netsplan/spring-cloud-stream-binder-kafka.git
git@gitee.com:netsplan/spring-cloud-stream-binder-kafka.git
netsplan
spring-cloud-stream-binder-kafka
spring-cloud-stream-binder-kafka
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385