欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

在eclipse中修改新建maven web项目默认的jre1.5为其他需要的版本(如jdk1.8)

程序员文章站 2022-03-03 23:53:07
...

1.在自己的maven安装目录下:(apache-maven-3.5.3-src\apache-maven-3.5.3\apache-maven\src\conf)找到settings.xml配置文件。

2.修改settings.xml配置文件。在<profiles>标签内添加如下内容:

	<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>
其中的1.8可以修改为自己JDK对应的版本或自己需要的版本。