check-mvn-versions.sh 149 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