F3Name icon indicating copy to clipboard operation
F3Name copied to clipboard

You have to declare the use of junit

Open rahulc07 opened this issue 5 years ago • 0 comments

Hi, I just tried to compile your plugin and noticed that you did not declare Junit as a dependency. It's an easy fix don't worry.

Add this to your pom.xml dependencies (I don't know what version you use)

    <dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.0.0-M5</version>
<scope>test</scope>

rahulc07 avatar Mar 09 '21 20:03 rahulc07