The source and target level specified as 1.6 in pom.xml. This restricts contributors from using the latest features of Java. Can this be changed to 1.8 or 11?
`
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
`