CODEDRAGON ㆍDevelopment/Spring
JUnit Library 검색 및 설치
메이븐 저장소로 이동합니다.
"JUnit"으로 검색
JUnit
https://mvnrepository.com/search?q=jackson
첫번째 항목 선택
최신 RELEASE 버전번호 클릭
https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api
Maven항목의 dependency 정보 복사
https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api/5.4.1
pom.xml 파일의 <dependencies> 태그안에 붙여넣기 하여 추가합니다.
<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.4.1</version> <scope>test</scope> </dependency> |
Project Explorer의 [Maven Dependencies]항목을 펼치면 라이브러리가 추가된 것을 확인할 수 있습니다.
'Development > Spring' 카테고리의 다른 글
IoC 도식도 (0) | 2019.10.01 |
---|---|
Spring Exception 특징 (0) | 2019.09.24 |
Layered Architecture, Layered Architecture 영역 (0) | 2019.08.16 |
ERROR - GetMapping cannot be resolved to a type, RequestParam cannot be resolved to a type 해결방법 (0) | 2019.08.12 |
Static Web Resource 처리 (0) | 2019.08.09 |