Make Be BackEnd

[JUnit] package org.junit does not exist 본문

IDE

[JUnit] package org.junit does not exist

Initsave 2023. 10. 8. 17:36

테스트를 하기 위해 메소드를 만들고 테스트에서 실행 하는 순간 " java package org.junit does not exist" 라는 에러 문구가 일어 났다.

 

여러곳을 구글링 했고 나온 결과는 pom.xml에서

<scope>test</scope>

해당 부분을 주석 또는 삭제 할것........

 

그래서 저게 뭔지 찾아봤다

 

https://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html#Dependency_Scope

 

Maven – Introduction to the Dependency Mechanism

Introduction to the Dependency Mechanism Dependency management is a core feature of Maven. Managing dependencies for a single project is easy. Managing dependencies for multi-module projects and applications that consist of hundreds of modules is possible.

maven.apache.org