I have Maven / Eclipse setup below and I already added junit as a compile time dependency in pom.xml.
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.2</version>
</dependency>
Can someone clarify why Eclipse is prompting me to add junit to create the path?
thanks

source
share