本文主要是介绍maven web项目pom.xml文件头部报错,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
创建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项目pom.xml文件头部报错的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!