테스트 코드 작성 중 등장한 warning
Found multiple occurrences of org.json.JSONObject on the class path:
jar:file:/Users/xxx/.m2/repository/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.jar!/org/json/JSONObject.class
jar:file:/Users/xxx/.m2/repository/org/json/json/20171018/json-20171018.jar!/org/json/JSONObject.class
메세지 그대로 JSONObject 가 두곳에 있어서 나오는 경고다.
이 경우 테스트를 돌릴때 의도와 다른 클래스를 사용할 수 있어서 하나를 제거해 줘야 한다.
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<version>${spring.boot.version}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>com.vaadin.external.google</groupId>
<artifactId>android-json</artifactId>
</exclusion>
</exclusions>
</dependency>
'개발 > 자바와 친해지기' 카테고리의 다른 글
메이븐, 스프링 프레임워크를 이용해서 프로젝트 만들기 (0) | 2017.11.21 |
---|