其他分享
首页 > 其他分享> > Eclipse忽略failOnMissingWebXml用户属性

Eclipse忽略failOnMissingWebXml用户属性

作者:互联网

我使用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可以为我解决此问题.

标签:maven,eclipse,pom-xml,java
来源: https://codeday.me/bug/20191120/2040711.html