This is really a Maven question, not a Maven on Eclipse (M2E) question, and
probably better asked on [email protected]
However, the reason is simply that Maven defaults to JDK 1.5. To change it,
you'll want something like the following in your pom.xml ...
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
which configures the compiler plugin to use JDK 1.6
Greg
On 8 September 2013 10:38, Jackson Isted <[email protected]>wrote:
> Hi,
>
> Sad to say that I am n00b to m2e (and to be fair, maven overall). I
> really like the system, but one thing I don't get is when ever I
> convert an existing project to a maven one or start a new maven
> project the execution is always J2SE-1.5. Does anyone know why this is
> occurring.
>
> Ps. The execution used to be JSE 6
>
> Sent from my iPod
> _______________________________________________
> m2e-users mailing list
> [email protected]
> https://dev.eclipse.org/mailman/listinfo/m2e-users
>
_______________________________________________
m2e-users mailing list
[email protected]
https://dev.eclipse.org/mailman/listinfo/m2e-users