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

Maven Web工程,默认jdk配置

程序员文章站 2022-06-18 08:58:50
...

 

问题描述:下载Maven Web项目后,每次都得选择一次JDK版本和部署Jar包依赖(deployment assembly)。

 

解决方法:

在pom.xml中加下如下配置代码段

<profiles>
		<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>
  </profiles>

 

工程右键执行Maven -> Update Project... 即可。