上传最新maven版本并依赖

This commit is contained in:
董宏宇
2021-01-25 18:13:31 +08:00
parent 123839b52f
commit 35c41fe23b
5 changed files with 13 additions and 3 deletions

View File

@@ -1,3 +1,11 @@
#!/bin/bash
./gradlew :foudations:mogo-httpdns:clean :foudations:mogo-httpdns:uploadArchives
function upload(){
./gradlew $1:clean $1:uploadArchives
if [ $? -ne 0 ];then exit; fi
}
for module in `cat modules.txt`;
do
upload $module
done