check-mvn-versions.sh 148 Bytes
#!/bin/bash
for i in `find code -type d -mindepth 1 -maxdepth 1 -name "Moya*"`; do cd $i ; mvn versions:display-dependency-updates; cd ../.. ; done