我使用Eclipse Mars和Maven 3.3.3创建了一个空的Web项目。目前,该项目仅包含pom.xml:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example.project</groupId>
<artifactId>web-project</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<failOnMissingWebXml>false</failOnMissingWebXml>
</properties>
<build>
<plugins>
<!-- <plugin> -->
<!-- <groupId>org.apache.maven.plugins</groupId> -->
<!-- <artifactId>maven-war-plugin</artifactId> -->
<!-- <version>2.6</version> -->
<!-- <configuration> -->
<!-- <failOnMissingWebXml>false</failOnMissingWebXml> -->
<!-- </configuration> -->
<!-- </plugin> -->
</plugins>
</build>
</project>
现在Eclipse抱怨缺少web.xml
文件。从maven-war-plugin的文档中可以set the user property failOnMissingWebXml
,因此无需进一步配置此插件。这可以从命令行使用Maven,项目构建成功。但是Eclipse仍然抱怨缺少web.xml。
有人知道如何通过使用此用户属性来消除Eclipse中的Maven配置错误吗?
更新:我有另一个使用Eclipse Luna SR1和Maven 3.2.5的开发环境,它不会抱怨新创建的Web项目中缺少web.xml。所以我想知道m2e插件是否以某种方式抑制了这个错误。