compile.sh

#!/bin/bash

for directory in */ ; do
	mvn -f $directory/pom.xml clean install -DskipTests &
done
wait