阅读A Java web project created with Maven is not recognized as such by Eclipse
我将以下插件添加到pom.xml以将我的maven项目转换为Web项目:
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<configuration>
<wtpmanifest>true</wtpmanifest>
<wtpapplicationxml>true</wtpapplicationxml>
<wtpversion>2.0</wtpversion>
</configuration>
</plugin>
</plugin>
然后我运行“更新项目配置”,但maven项目未转换为Web项目。
如果我运行命令mvn eclipse:eclipse -Dwtpversion=2.0
,则会更新项目。是否应该更新.pom文件不足以将maven项目转换为Web项目?
答案 0 :(得分:0)
这还不够。需要执行插件配置,这不会仅通过在Eclipse中加载/刷新它来实现。它在mvn eclipse:eclipse
运行时执行。
我认为我们没有m2e,它不需要这种配置。