F3Name
F3Name copied to clipboard
You have to declare the use of junit
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>