2022-08-01 22:49:20 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2022-09-07 14:57:07 +02:00
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
2022-08-01 22:49:20 +02:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<groupId>de.hhhammer</groupId>
|
|
|
|
<artifactId>playtime-ng</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2023-07-28 17:43:34 +02:00
|
|
|
<maven.compiler.source>20</maven.compiler.source>
|
2022-08-01 22:49:20 +02:00
|
|
|
<maven.compiler.target>${maven.compiler.source}</maven.compiler.target>
|
2023-07-28 17:43:34 +02:00
|
|
|
<junit.jupiter.version>5.10.0</junit.jupiter.version>
|
|
|
|
<mockito.version>5.4.0</mockito.version>
|
2022-08-01 22:49:20 +02:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
2023-07-28 17:43:34 +02:00
|
|
|
<version>1.20.1-R0.1-SNAPSHOT</version>
|
2022-08-01 22:49:20 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--Test-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
|
|
<version>${junit.jupiter.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
|
|
<version>${junit.jupiter.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-core</artifactId>
|
2022-09-23 20:19:56 +02:00
|
|
|
<version>${mockito.version}</version>
|
2022-08-01 22:49:20 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2022-09-07 14:54:35 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-junit-jupiter</artifactId>
|
2022-09-23 20:19:56 +02:00
|
|
|
<version>${mockito.version}</version>
|
2022-09-07 14:54:35 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2022-08-01 22:49:20 +02:00
|
|
|
<!-- to test my json implementation -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
2022-09-23 20:20:49 +02:00
|
|
|
<version>2.13.4</version>
|
2022-08-01 22:49:20 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>3.0.0-M7</version>
|
|
|
|
<configuration>
|
|
|
|
<useModulePath>false</useModulePath>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|