You can flip your own using the shell script that is around:
svn --non-interactive status
Your shell script might do something like this:
PROJECT_LIST=`svn --non-interactive status | filter out target dir \ | cut out status \ | cut out subdirectories \ | replace line endings with ','` mvn $* --projects=$PROJECT_LIST
I have not tested this, but I know that this is possible in theory.
source share