I think you have configured the wrong maven plugin. What you need is a setting for the compiler plugin. The easiest would be to add this:
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>