It's pretty convoluted how they provide anon access to the repo. If you read this wiki the things will be much clearer: OW2 Forge: SVN Repository
You can check out project as (for your case)
svn checkout "svn://svn.forge.objectweb.org/svnroot/frascati/trunk/examples/frascati-in-the-cloud/Google App Engine"
Please mind the quote around the URL since your URL contains white spaces.
or use tortoise to checkout svn://svn.forge.objectweb.org/svnroot/frascati/trunk/examples/frascati-in-the-cloud/Google App Engine
sidenote: While reading your question, the one thing kept whining in my mind is why you would use mvn -- Maven, to checkout the repository.
Here is the distinction.
svn command is to invoke SubVersion. SubVersion is a SCM. It manages the revision, and parallel development. It has everything to do with checkout, checkin, update, delete, and add code to/from repository from/to your local machine.
mvn command is to summon the all mighty Maven. Maven is a build manager. It had to do with compiling, packaging, testing, and releasing of the code that you write. It partially overlaps with SVN (or any other SCM) during release. You do not use Maven to checkout the code.
So, mvn and svn do rhyme - but they aren't the same thing.