私は4.10でjunitを使用しており、1.3でhamcrest-core、1.3でhamcrest-libraryを宣言しています。私の質問は、junit 4.10 に埋め込まれた hamcrest-library と hamcrest-core です。junit 4.11はどうですか?
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>