都运行成功,除了getaway模块

This commit is contained in:
陈云志
2020-12-18 13:28:13 +08:00
parent 467279cc19
commit b4d580ab79
34 changed files with 1588 additions and 162 deletions

16
checkThirdPaty.sh Executable file
View File

@@ -0,0 +1,16 @@
#!/bin/bash
currentDir=`pwd`
shortName=${currentDir##*/}
rm -rf temp build-product-${shortName}.gradle
echo "dependencies { ">> build-product-${shortName}.gradle
find . -name "build.gradle" | xargs cat |grep -E "compile group|compile '|implementation " | egrep -v 'gridnt' >> temp
sort temp |uniq >> build-product-${shortName}.gradle
rm -rf temp
echo "} ">> build-product-${shortName}.gradle
rm -rf temp gridnt-jar-${shortName}.md
find . -name "build.gradle" | xargs cat |grep -E "compile group|compile '|implementation " | grep -E 'gridnt' >> temp
sort temp |uniq >> gridnt-jar-${shortName}.md
rm -rf temp