1

在 eclipse 中导入 maven 项目时出现此错误。我尝试了在此处发布的解决方案,但没有解决问题。不确定 pom 是否是真正的罪魁祸首,只是添加下面的代码

<?xml version="1.0" encoding="UTF-8"?>
<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>

    <groupId>abc</groupId>
    <artifactId>xyz</artifactId>
    <packaging>jar</packaging>
    <name>Selenium Test</name>

    <build>
        <finalName>selenium</finalName>
        <sourceDirectory>src/main/java</sourceDirectory>
        <resources>
            <resource>
                <directory>src/main/java</directory>
                <excludes>
                    <exclude>**/*.java</exclude>
                </excludes>
            </resource>
            <resource>
                <directory>src/main/resources</directory>
            </resource>
        </resources>

    </build>

    <dependencies>
        <dependency>
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
            <version>6.8</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.seleniumhq.selenium</groupId>
            <artifactId>selenium-java</artifactId>
            <version>2.25.0</version>
            <scope>compile</scope>
        </dependency>
    </dependencies>
</project>
4

3 回答 3

0

项目“最终名称”或 pom.xml 中的其他声明可能存在拼写错误。您可以从工作区中删除项目,然后将其导入回来。那至少应该在控制台中显示一些错误。如果您重构了项目名称,您可能会收到此错误。不知何故,折射器不会更新参考。

于 2013-02-14T20:14:06.247 回答
0

它只是意味着 pom.xml 有错误。这可能是简单的拼写错误或某些依赖问题。这是一个循序渐进的方法,可以解决您的问题。

第 1 步:备份现有的 pom.xml。

第 2 步:创建一个新的项目 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>
  <groupId>com.example</groupId>
  <artifactId>samplemaven</artifactId>
  <version>0.0.1-SNAPSHOT</version>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <java.version>1.8</java.version>
    </properties>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.1</version>
                <configuration>
                    <source>${java.version}</source>
                    <target>${java.version}</target>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <dependencies>
        <!-- Your dependencies goes here. -->
    </dependencies>

</project>

第 3 步:更改 groupId、artifatId 等(只需进行最低限度的更改)。

第 4 步:从项目目录中删除 .project、.classpath 和 .settings 文件夹(如果您之前有这些文件)。

第五步:在eclipse中导入项目。您应该不会在导入时发现任何问题。

第 6 步:导入完成后,更改新的 pom.xml 以从旧的 pom.xml 中引入其他配置(在第 1 步中备份)。

不要替换新的 pom.xml,因为它最有可能带回原来的问题。在修改更改时也要小心,不要再次引入问题。

于 2017-05-31T22:24:33.393 回答
-1

我有同样的错误,我将工件和版本中的所有变量替换为预期值,然后项目完美导入,然后我返回所有变量

于 2017-03-12T13:36:18.500 回答