CustomHeads/pom.xml
IHasName 8915d4b478 The Version Fixing (mostly, not everything)
- Using InventoryHolders now instead of checking the Title (Yes I know InventoryHolders aren't supposed to be used like that) #47
- Fixed Issue where Categories wouldn't use the Default Price from the Config
- Updated Item to Json Conversion when saving to Category (Now it doesn't convert ItemStack->String->JsonObject instead just ItemStack->JsonObject)
- Added Hungarian Language (Big thanks to TimeScare and TavstalDev)
- Gave AsyncFileDownloader an actual User Agent
- AsyncFileDownloader now has an actual HttpException instead of the "thing" that was there before
- Added Language Command Hints
- Implemented a whole NBT Wrapper and all the Stuff (still testing things)
- Moved NBTType to its own Class since it didn't really fit with Subclasses in the Util Class
- Cleaned up some Code (Lint. Lint everywhere)

Also trying to commit smaller Changes more often and not just the whole Update
2024-07-15 01:37:00 +02:00

100 lines
3.5 KiB
XML

<?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>de.likewhat.customheads</groupId>
<artifactId>CustomHeads</artifactId>
<version>3.0.10</version>
<packaging>jar</packaging>
<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>
<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>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.destroystokyo.paper</groupId>
<artifactId>paper</artifactId>
<version>1.8.8-443</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.github.MilkBowl</groupId>
<artifactId>VaultAPI</artifactId>
<version>1.7</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.16.22</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>