zubiden / F3Name

[Spigot|BungeeCord] Edit your server name in debug screen
https://www.spigotmc.org/resources/f3name-rename-your-server-in-debug-screen.58997/
Apache License 2.0
19 stars 16 forks source link

You have to declare the use of junit #15

Open rahulc07 opened 3 years ago

rahulc07 commented 3 years ago

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>