Java source version problem with Maven
If we build a Maven project for the first time and use annotations like @Override, ... which are only available in Java 1.5 and higher, we might get following error
The reason is default java source version in Maven is 1.3 -- really old. We need to update pom.xml with the following










