clean.sh

#!/bin/bash

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