我正在使用Eclipse Blue 10& Maven 3在我的开发环境中。
我通常按照以下路径从SVN导入maven项目:
File > Import> SVN > Checkout Projects from SVN
然后导入所有maven项目:
Right click on imported project > Maven4MyEclipse> Existing Maven Projects
我有一个名为'project-ear'的maven模块,这个模块是将我的所有Web应用程序绑定到一只耳中。
但每当我将EAR模块作为eclipse项目导入时,eclipse会在“Problems”选项卡中提示以下错误:
项目配置与pom.xml不同步。运行项目配置更新。
如何解决此问题?我没有看到任何“运行项目配置更新”的方法。
请帮忙。
EAR模块的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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.company.xxx</groupId>
<artifactId>my</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<groupId>com.company.xxx.ear</groupId>
<artifactId>my-ear</artifactId>
<packaging>ear</packaging>
<name>my-ear</name>
<build>
<finalName>web-app</finalName>
<plugins>
<plugin>
<artifactId>maven-ear-plugin</artifactId>
<version>2.5</version>
<configuration>
<modules>
<webModule>
<groupId>com.company.xxx.myweb</groupId>
<artifactId>my-web</artifactId>
<contextRoot>/txcs</contextRoot>
</webModule>
</modules>
<generateApplicationXml>true</generateApplicationXml>
<displayName>web-app</displayName>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.company.xxx.myweb</groupId>
<artifactId>my-web</artifactId>
<type>war</type>
<version>${project.version}</version>
</dependency>
</dependencies>
答案 0 :(得分:65)
抱歉,我还没有代表添加评论。 stonedsquirrel(上图)是正确的,他们的答案应该被投票为正确:
完美地为我工作。
答案 1 :(得分:10)
当我将Java从JRE System Library [JavaSE 1.6]
升级到JRE System Library [JavaSE 1.7]
时,我遇到了这个问题。
完成后,问题查看Project configuration is not up-to-date with pom.xml. Run project configuration update
中会显示以下错误。
我在pom.xml中更改了编译器的配置,以前source and target
的值是1.6,我把它改为1.7
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</build>
要解决此问题,只需按照以下步骤操作即可。
解决方案: Right click on the project
- &gt; Maven4MyEclipse
- &gt; Update Project Configuration...
下图显示了如何在MyEclipse IDE中进行操作。
或
解决方案:右键点击问题视图中的错误 - &gt;点击Quick Fix
下图显示了如何在Eclipse IDE中执行
答案 2 :(得分:3)
1-点击alt + F5
2-更新Maven项目屏幕将出现。在这里,点击添加过期
3-好的。
答案 3 :(得分:2)
以下为我工作:
答案 4 :(得分:1)
以下步骤对我有用:
答案 5 :(得分:1)
以下过程对我有用:
答案 6 :(得分:0)
备份项目。 1 - 从工作区中删除项目。 2 - 导入项目。 3-mvn clean install
它在STS中运行良好
答案 7 :(得分:0)
右键单击项目资源管理器并选择maven并选择更新项目。
答案 8 :(得分:0)
如果您正在使用Maven项目,请尝试:
该项目将转换为Maven项目并编译所有Java和Maven库