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-01-16 21:00:16 +01:00
|
|
|
<version>2.2</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
|
|
|
|
|
|
|
<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-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>
|
|
|
|
<groupId>com.destroystokyo.paper</groupId>
|
|
|
|
<artifactId>paper-api</artifactId>
|
|
|
|
<version>1.16.3-R0.1-SNAPSHOT</version>
|
|
|
|
<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-10-19 17:34:36 +02:00
|
|
|
</dependencies>
|
|
|
|
|
2020-10-30 16:49:13 +01:00
|
|
|
<build>
|
|
|
|
<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>
|
|
|
|
<configuration>
|
|
|
|
<source>8</source>
|
|
|
|
<target>8</target>
|
|
|
|
</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>
|