I see you added a section to configure the maven-compiler-plugin in your pom.xml, and you have UTF-8 characters in your Java source code files.
I guess the text from your java scource files are not displaying correctly. If that is the case, telling the compiler plugin explicitely which encoding to use might help:
<build>
<finalName>MvcMustache</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<!-- fetch encoding from definition up in the pom.xml -->
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
</plugins>
</build>