2022-05-16 06:33:14 +00:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2022-12-08 20:00:44 +00:00
|
|
|
<groupId>net.reslate.mcswebapi</groupId>
|
2022-05-16 06:33:14 +00:00
|
|
|
<artifactId>mcswebapi</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
|
|
</properties>
|
|
|
|
<name>mcswebapi</name>
|
|
|
|
<url>http://maven.apache.org</url>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.reflections</groupId>
|
|
|
|
<artifactId>reflections</artifactId>
|
|
|
|
<version>0.10.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.pac4j</groupId>
|
|
|
|
<artifactId>javalin-pac4j</artifactId>
|
2022-12-08 20:00:44 +00:00
|
|
|
<version>5.0.1</version>
|
2022-05-16 06:33:14 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.javalin</groupId>
|
|
|
|
<artifactId>javalin</artifactId>
|
2022-12-08 20:00:44 +00:00
|
|
|
<version>5.2.0</version>
|
2022-05-16 06:33:14 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.pac4j</groupId>
|
|
|
|
<artifactId>pac4j-oauth</artifactId>
|
2022-12-08 20:00:44 +00:00
|
|
|
<version>5.5.0</version>
|
2022-05-16 06:33:14 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter</artifactId>
|
|
|
|
<version>5.8.2</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
2022-12-08 20:00:44 +00:00
|
|
|
<version>1.19.2-R0.1-SNAPSHOT</version>
|
2022-05-16 06:33:14 +00:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>2.22.2</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-failsafe-plugin</artifactId>
|
|
|
|
<version>2.22.2</version>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/public/</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
</project>
|