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

修改maven创建时的编译级别

程序员文章站 2022-05-08 15:28:42
...
修改maven3项目的默认的编译级别(compile level)

在setting.xml中添加如下配置
<profile>
		<id>jdk-1.7</id>
		
		<activation>
			<jdk>1.7</jdk>
			<activeByDefault>true</activeByDefault>
		</activation>
		
		<properties>
			<maven.compiler.source>1.7</maven.compiler.source>
  			<maven.compiler.target>1.7</maven.compiler.target>
  			<maven.compiler.compilerVersion>1.7</maven.compiler.compilerVersion>
		</properties>
	</profile>