選択できるのは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