我已将war更改为pom,但收到以下错误:
Project configuration is not up-to-date with pom.xml.
Run Maven->Update Project or use Quick Fix.如何解决此错误?
发布于 2013-07-14 06:06:24
假设您使用的是Eclipse,右键单击pom,选择Maven --> Update Project。
发布于 2015-08-08 07:04:18
">http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 br.com.projetoweb03 universo2 0.0.1-快照war
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.3</version>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>
</plugins>
</build>
https://stackoverflow.com/questions/17633047
复制相似问题