You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/bin/sh
-
- /wait-for-it.sh -t 30 repo:80
-
- if [ $? -lt 30 ]; then
- for pom in /poms/*; do
- mvn -P central -f $pom dependency:go-offline;
- done
- else
- echo "Can't connect to repository"
- exit 255
- fi
|