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

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

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

解决方法如下:

在pom.xml文件中加入:


		
			
				maven-compiler-plugin
				
					1.7
					1.7
				
			
			
				maven-war-plugin
				2.4
				
					3.0
				
			
		
		webserver
	
那是因为项目未指定maven war编译插件的错误

你可能感兴趣的:(解决maven web项目Cannot detect Web Project version. Please specify version of Web Project through...的错误)