每次我跑#34; Maven更新"在我的项目中,maven将JRE系统库强制为Execution Environment
选项。如下所示:
如何让M2E让我选择其他两个选项?
我在pom.xml中的配置低于override the default J2SE-1.5 version of M2E:
<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>