It corresponds to the source and target maven-compiler-plugin settings, which are 1.5 by default.
If you change them, the generated project will use a different version:
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin>
Please note: if you change the Eclipse projectβs compliance settings without changing the maven-compiler-plugin settings, your Maven assemblies will not be compatible with your Eclipse environment.
axtavt
source share