解决maven update project 后项目jdk变成1.5的问题
方案一:
在pom.xml文件中增加如下配置:
<plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.7</source> <target>1.7</target> <encoding>UTF-8</encoding> </configuration> </plugin> </plugins>
只对当前项目有效
方案二:
打开 settings.xml 文件并编辑,找到< profile >节点,添加下面配置
<profile> <id>jdk-1.8</id> <activation> <activeByDefault>true</activeByDefault> <jdk>1.8</jdk> </activation> <properties> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion> </properties> </profile>
如图所示
进入eclipse->window->preferences,搜索maven,重新配置maven并update settings即可
如图所示
该方案为全局方案,一劳永逸