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

无法解析org.hamcrest.matcher类型。它是从必需的。class文件间接引用的

养鸿运
2023-03-14

代码在Eclipse Oxygo3中运行良好,但同样的代码在Eclipse Photon中显示错误。

pom.xml:hamcrest的依赖关系

<dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.12</version>
        <scope>test</scope>
        <exclusions>
            <exclusion>
                <artifactId>hamcrest-core</artifactId>
                <groupId>org.hamcrest</groupId>
            </exclusion>
        </exclusions>
    </dependency>
    <dependency>
        <groupId>org.hamcrest</groupId>
        <artifactId>hamcrest-all</artifactId>
        <version>1.3</version>
        <scope>test</scope>
    </dependency>

有人知道如何删除此错误吗?

共有1个答案

葛炯
2023-03-14

将hamcrest-all jar从下面放置在您的构建路径中,这对我来说很有效。

https://mvnrepository.com/artifact/org.hamcrest/hamcrest-all/1.3

 类似资料: