您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

13 行
215B

  1. #!/bin/sh
  2. /wait-for-it.sh -t 30 repo:80
  3. if [ $? -lt 30 ]; then
  4. for pom in /poms/*; do
  5. mvn -P central -f $pom dependency:go-offline;
  6. done
  7. else
  8. echo "Can't connect to repository"
  9. exit 255
  10. fi