解决maven web项目Cannot detect Web Project version. Please specify version of Web Project through...的错误
Posted 蒋孝愚
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决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 <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 - update project
以上是关于解决maven web项目Cannot detect Web Project version. Please specify version of Web Project through...的错误的主要内容,如果未能解决你的问题,请参考以下文章
解决使用maven的java web项目导入后出现的有关问题 -cannot be read or is not a valid ZIP file
maven项目创建——异常:Cannot detect Web Project version
使用maven创建项目和cannot change version web module 3.0
解决报错:The import javax.servlet.annotation cannot be resolved
maven构建web项目,cannot be cast to javax.servlet.Servlet
解决Cannot change version of project facet Dynamic web module to 2.5