2018-09-08 04:58:07 +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>
|
|
|
|
|
2020-01-19 17:24:45 +01:00
|
|
|
<groupId>de.likewhat.customheads</groupId>
|
2018-09-08 04:58:07 +02:00
|
|
|
<artifactId>CustomHeads</artifactId>
|
2024-07-15 01:37:00 +02:00
|
|
|
<version>3.0.10</version>
|
2018-09-08 04:58:07 +02:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2018-09-25 23:50:51 +02:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.build.targetEncoding>UTF-8</project.build.targetEncoding>
|
|
|
|
<project.source.encoding>UTF-8</project.source.encoding>
|
|
|
|
<project.target.encoding>UTF-8</project.target.encoding>
|
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
</properties>
|
|
|
|
|
2018-09-08 04:58:07 +02:00
|
|
|
<build>
|
|
|
|
<finalName>${project.artifactId}</finalName>
|
|
|
|
<sourceDirectory>src/main/java</sourceDirectory>
|
|
|
|
<defaultGoal>clean package</defaultGoal>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/java</directory>
|
|
|
|
<excludes>
|
|
|
|
<exclude>**/*.java</exclude>
|
|
|
|
</excludes>
|
|
|
|
</resource>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>2.4.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<artifactSet>
|
|
|
|
<includes>
|
|
|
|
<include>${project.groupId}:${project.artifactId}</include>
|
|
|
|
</includes>
|
|
|
|
</artifactSet>
|
|
|
|
<filters>
|
|
|
|
<filter>
|
|
|
|
<artifact>*:*</artifact>
|
|
|
|
<excludes>
|
|
|
|
<exclude>META-INF/**</exclude>
|
|
|
|
</excludes>
|
|
|
|
</filter>
|
|
|
|
</filters>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
2021-07-14 21:46:29 +02:00
|
|
|
<id>jitpack.io</id>
|
|
|
|
<url>https://jitpack.io</url>
|
2018-09-08 04:58:07 +02:00
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2021-07-08 22:03:37 +02:00
|
|
|
<groupId>com.destroystokyo.paper</groupId>
|
|
|
|
<artifactId>paper</artifactId>
|
2021-12-19 16:41:45 +01:00
|
|
|
<version>1.8.8-443</version>
|
2019-04-16 20:08:14 +02:00
|
|
|
<scope>provided</scope>
|
2018-09-08 04:58:07 +02:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2021-07-14 21:46:29 +02:00
|
|
|
<groupId>com.github.MilkBowl</groupId>
|
|
|
|
<artifactId>VaultAPI</artifactId>
|
|
|
|
<version>1.7</version>
|
2019-04-16 20:08:14 +02:00
|
|
|
<scope>provided</scope>
|
2018-09-08 04:58:07 +02:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
2019-07-14 23:37:38 +02:00
|
|
|
<version>1.16.22</version>
|
2018-09-08 04:58:07 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|