This may not work in maven 2.2.1, but with Maven 3.0.4, simply adding the two properties to the pom’s properties enables Java 7 for me:
<properties>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
</properties>