compile.sh

#!/bin/bash

for directory in *; do
	if [[ -d $directory ]]; then
		mvn -f $directory/pom.xml clean install -DskipTests &
	fi
done
wait