2012-08-29

Junit에서 Hamcrest 최신버전 사용하기

maven pom.xml을 다음과 같이 바꾸면 됩니다.

<dependency>
    <groupId>org.hamcrest</groupId>
    <artifactId>hamcrest-all</artifactId>
    <version>1.3</version>
    <scope>test</scope>
</dependency>
<dependency>
    <groupId>junit</groupId>
    <artifactId>junit-dep</artifactId>
    <version>4.10</version>
    <scope>test</scope>
</dependency>

요약하면 junit을 junit-dep 이것을 사용하면 됩니다. hamcrest를 뺀 것이죠.

댓글 없음:

댓글 쓰기