`
shuzheng5201314
  • 浏览: 198593 次
  • 来自: 北京
社区版块
存档分类
最新评论

IDEA 自动重置项目的LanguageLevel

 
阅读更多

http://blog.csdn.net/isea533/article/details/48575983

 

http://www.cnblogs.com/softlin/p/4395799.html?utm_source=tuicool&utm_medium=referral

 

pom.xml

<properties>
       <maven.compiler.source>1.8</maven.compiler.source>
       <maven.compiler.target>1.8</maven.compiler.target>
</properties>

 

或者修改Maven的Settings.xml文件添加如下内容

<profile>
	<id>jdk-1.7</id>
	<activation>
		<activeByDefault>true</activeByDefault>
		<jdk>1.7</jdk>
	</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>

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics