Eclipse 忽略 failOnMissingWebXml 用户 属性
Eclipse ignores failOnMissingWebXml user property
我使用 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 插件以某种方式抑制了。
从 http://download.eclipse.org/m2e-wtp/snapshots/mars/ 安装 wtp-m2e 1.2.1
为我解决了这个问题。
我使用 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 插件以某种方式抑制了。
从 http://download.eclipse.org/m2e-wtp/snapshots/mars/ 安装 wtp-m2e 1.2.1
为我解决了这个问题。