码迷,mamicode.com
首页 > 编程语言 > 详细

maven3 在创建web项目时:Dynamic Web Module 3.0 requires Java 1.6 or newer 错误

时间:2014-11-27 16:03:53      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   ar   sp   java   on   2014   art   

问题:如图,在配置web项目时出现Dynamic Web Module 3.0 requires Java 1.6 or newer 错误

bubuko.com,布布扣

出现该问题是由于maven在构建的时候采用默认的jdk1.5

解决:

 1.修改maven的构建在项目的pom.xml,在<build></build>标签中添加

<plugins>

<plugin>

<groupId>org.apache.maven.plugins</groupId>

<artifactId>maven-compiler-plugin</artifactId>

<version>2.3.2</version>

<configuration>

<source>1.6</source>

<target>1.6</target>

</configuration>

</plugin>

</plugins>

2.修改默认的jdk1.5 修改为1.6 即可

 bubuko.com,布布扣

maven3 在创建web项目时:Dynamic Web Module 3.0 requires Java 1.6 or newer 错误

标签:blog   http   io   ar   sp   java   on   2014   art   

原文地址:http://www.cnblogs.com/jianglongwei/p/4126464.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!