当前位置: 首页 > 知识库问答 >
问题:

Maven项目导入/更新期间Eclipse Juno中出现内部错误

祁驰
2023-03-14

我正在使用安装了m2e WTP插件的Eclipse Juno(试用过的SR1和SR2)。(我也用m2e插件进行了同样的尝试),得到了以下结果:

在“导入Maven项目”过程中发生内部错误。org/eclipse/m2e/wtp/wtpprojectsutil

当我尝试导入一个项目时,以及当我尝试运行mvn更新时,都会发生这种情况。下面是错误的图像:

更新下面是Web项目的POM文件

<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>
<parent>
    <groupId>com.mycomp</groupId>
    <artifactId>myproject</artifactId>
    <version>0.0.1-SNAPSHOT</version>
</parent>
<artifactId>myprojectWAR</artifactId>
<packaging>war</packaging>

<dependencies>
    <!-- dependencies here! -->
</dependencies>

<build>
    <finalName>myprojectWAR</finalName>
    <plugins>
        <plugin>
            <artifactId>maven-war-plugin</artifactId>
            <configuration>
                <webResources>
                    <resource>
                        <directory>${project.build.directory}/myprojectWAR</directory>
                    </resource>
                </webResources>
                <archive>
                    <addMavenDescriptor />
                    <manifestSections>
                        <manifestSection>
                            <name>JAX-WS engine</name>
                            <manifestEntries>
                                <DisableIBMJAXWSEngine>true</DisableIBMJAXWSEngine>
                            </manifestEntries>
                        </manifestSection>
                    </manifestSections>
                    <manifest>
                        <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
                        <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
                    </manifest>
                </archive>
            </configuration>
        </plugin>
    </plugins>
</build>

共有1个答案

丁钟展
2023-03-14

在安装“WebSphere®Application ServerV8.5Tools for Juno”之后,我得到了同样的错误。更新到eclipse marketplace中最新的“M2E-WTP-Maven Integration for WTP”解决了这个问题。我不确定这是否是你的问题,但可能会帮助其他人面对这种情况。

 类似资料: