首页 > Web开发 > 详细

解决maven web项目Cannot detect Web Project version. Please specify version of Web Project through...的错误

时间:2014-02-23 10:34:19      阅读:363      评论:0      收藏:0      [点我收藏+]

前面已经聊了创建maven web工程,但是问题来了,创建maven web工程之后会出现如下的错误,在pom.xml文件头部 有以下的错误

Cannot detect Web Project version. Please specify version of Web Project through <version> configuration property of war plugin. E.g.: <plugin> <artifactId>maven-
 war-plugin</artifactId> <configuration> <version>3.0</version> </configuration> </plugin>

解决方法如下:

在pom.xml文件中加入:

<build>
		<plugins>
			<plugin>
				<artifactId>maven-compiler-plugin</artifactId>
				<configuration>
					<source>1.7</source>
					<target>1.7</target>
				</configuration>
			</plugin>
			<plugin>
				<artifactId>maven-war-plugin</artifactId>
				<version>2.4</version>
				<configuration>
					<version>3.0</version>
				</configuration>
			</plugin>
		</plugins>
		<finalName>webserver</finalName>
	</build>
那是因为项目未指定maven war编译插件的错误

解决maven web项目Cannot detect Web Project version. Please specify version of Web Project through...的错误

原文:http://blog.csdn.net/enson16855/article/details/19704355

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!