代码在 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>
任何人都知道如何消除此错误?