1

代码在 Eclipse Oxygen 3 中运行良好,但相同的代码在 Eclipse Photon 中显示错误。

错误:无法解析 org.hamcrest.Matcher 类型。它是从所需的 .class 文件中间接引用的

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>

任何人都知道如何消除此错误?

4

1 回答 1

-2

将 hamcrest-all jar 从下方放在构建路径中,这对我有用。

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

于 2019-07-19T18:27:56.940 回答