Add dependencies for unit tests

This commit is contained in:
Christian Koop 2021-10-30 14:53:09 +02:00
parent 0712730ca6
commit afb53ba3a0
No known key found for this signature in database
GPG Key ID: 89A8181384E010A3
2 changed files with 32 additions and 0 deletions

1
.gitignore vendored
View File

@ -14,6 +14,7 @@
/NMS/*/target/
dependency-reduced-pom.xml
/**/logs/*.log
##
# Misc.

31
pom.xml
View File

@ -67,6 +67,16 @@
<release>${java.release}</release>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.2</version>
</plugin>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.0.0-M5</version>
</plugin>
</plugins>
</build>
@ -116,5 +126,26 @@
<version>22.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.8.1</version>
<scope>test</scope>
</dependency>
<!-- <dependency>-->
<!-- <groupId>org.mockito</groupId>-->
<!-- <artifactId>mockito-core</artifactId>-->
<!-- <version>3.12.4</version>-->
<!-- <scope>test</scope>-->
<!-- </dependency>-->
<dependency>
<groupId>com.github.seeseemelk</groupId>
<artifactId>MockBukkit-v1.17</artifactId>
<version>1.10.3</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>