2020-10-19 17:34:36 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<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/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<groupId>tsp.headdb</groupId>
|
|
|
|
<artifactId>HeadDB</artifactId>
|
2021-09-15 18:08:35 +02:00
|
|
|
<version>2.4.4</version>
|
2020-10-19 17:34:36 +02:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>HeadDB</name>
|
2020-12-08 22:22:41 +01:00
|
|
|
<description>Database with thousands of heads</description>
|
2020-10-19 17:34:36 +02:00
|
|
|
|
2021-09-15 18:08:23 +02:00
|
|
|
<properties>
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
|
2020-10-19 17:34:36 +02:00
|
|
|
<repositories>
|
2020-11-17 22:39:22 +01:00
|
|
|
<!-- Paper Repo -->
|
2020-10-19 17:34:36 +02:00
|
|
|
<repository>
|
|
|
|
<id>papermc</id>
|
|
|
|
<url>https://papermc.io/repo/repository/maven-public/</url>
|
|
|
|
</repository>
|
2020-11-17 22:39:22 +01:00
|
|
|
<!-- Mojang Repo -->
|
2020-10-19 17:34:36 +02:00
|
|
|
<repository>
|
|
|
|
<id>mojang-repo</id>
|
|
|
|
<url>https://libraries.minecraft.net/</url>
|
|
|
|
</repository>
|
2020-12-08 22:22:41 +01:00
|
|
|
<!-- JitPack -->
|
|
|
|
<repository>
|
|
|
|
<id>jitpack.io</id>
|
|
|
|
<url>https://jitpack.io</url>
|
|
|
|
</repository>
|
2020-12-20 16:03:31 +01:00
|
|
|
<!-- CodeMC -->
|
|
|
|
<repository>
|
|
|
|
<id>codemc-snapshots</id>
|
|
|
|
<url>https://repo.codemc.io/repository/maven-snapshots/</url>
|
|
|
|
</repository>
|
2020-10-19 17:34:36 +02:00
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
2020-12-08 22:22:41 +01:00
|
|
|
<!-- Paper API -->
|
2020-10-19 17:34:36 +02:00
|
|
|
<dependency>
|
2021-07-05 23:18:29 +02:00
|
|
|
<groupId>io.papermc.paper</groupId>
|
2020-10-19 17:34:36 +02:00
|
|
|
<artifactId>paper-api</artifactId>
|
2021-07-05 23:18:29 +02:00
|
|
|
<version>1.17-R0.1-SNAPSHOT</version>
|
2020-10-19 17:34:36 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<!-- json-simple -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.googlecode.json-simple</groupId>
|
|
|
|
<artifactId>json-simple</artifactId>
|
|
|
|
<version>1.1.1</version>
|
|
|
|
</dependency>
|
2020-11-17 22:39:22 +01:00
|
|
|
<!-- Mojang Auth Lib -->
|
2020-10-19 17:34:36 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.mojang</groupId>
|
|
|
|
<artifactId>authlib</artifactId>
|
|
|
|
<version>1.5.21</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2020-12-08 22:22:41 +01:00
|
|
|
<!-- Storage Lib -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.simplix-softworks</groupId>
|
|
|
|
<artifactId>simplixstorage</artifactId>
|
|
|
|
<version>3.2.0</version>
|
|
|
|
</dependency>
|
2020-12-20 16:03:31 +01:00
|
|
|
<!-- AnvilGUI -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.wesjd</groupId>
|
|
|
|
<artifactId>anvilgui</artifactId>
|
2021-07-03 19:15:16 +02:00
|
|
|
<version>1.5.1-SNAPSHOT</version>
|
2020-12-20 16:03:31 +01:00
|
|
|
</dependency>
|
2021-07-03 18:40:05 +02:00
|
|
|
<!-- Vault -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.MilkBowl</groupId>
|
|
|
|
<artifactId>VaultAPI</artifactId>
|
|
|
|
<version>1.7</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2020-10-19 17:34:36 +02:00
|
|
|
</dependencies>
|
|
|
|
|
2020-10-30 16:49:13 +01:00
|
|
|
<build>
|
2021-04-21 18:53:10 +02:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
|
2020-10-30 16:49:13 +01:00
|
|
|
<plugins>
|
2020-12-08 22:22:41 +01:00
|
|
|
<!-- Compiler -->
|
2020-10-30 16:49:13 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2021-07-05 14:48:47 +02:00
|
|
|
<version>3.8.1</version>
|
2020-10-30 16:49:13 +01:00
|
|
|
<configuration>
|
2021-08-02 18:03:30 +02:00
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
2020-10-30 16:49:13 +01:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2020-12-08 22:22:41 +01:00
|
|
|
|
|
|
|
<!-- Shade -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>3.2.4</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<transformers>
|
|
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
|
|
|
<mainClass>tsp.headdb.HeadDB</mainClass>
|
|
|
|
</transformer>
|
|
|
|
</transformers>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2020-10-30 16:49:13 +01:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2020-10-19 17:34:36 +02:00
|
|
|
</project>
|