check-mvn-versions.sh 148 Bytes BlameHistoryPermalink Edit 1 2 #!/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