This commit is contained in:
mfnalex 2022-03-07 23:01:17 +01:00
parent a54ac737af
commit f52109e671
2 changed files with 22 additions and 2 deletions

View File

@ -1,5 +1,10 @@
# Changelog # Changelog
## 13.0.2
- Fixed AdvancedChests bug (thanks @ DeadSilenceIV)
- Fixed 1.18.2 support
- Reduced file size by ~130kb
## 13.0.1 ## 13.0.1
- 1.18.2 support - 1.18.2 support
- Updated Chinese translation - Updated Chinese translation

19
pom.xml
View File

@ -9,7 +9,7 @@
<name>ChestSort</name> <name>ChestSort</name>
<url>https://www.chestsort.de</url> <url>https://www.chestsort.de</url>
<description>Allows automatic chest sorting!</description> <description>Allows automatic chest sorting!</description>
<version>13.0.1</version> <version>13.0.2</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<properties> <properties>
@ -57,6 +57,8 @@
<artifactId>maven-shade-plugin</artifactId> <artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version> <version>3.2.4</version>
<configuration> <configuration>
<minimizeJar>true</minimizeJar>
<relocations> <relocations>
<relocation> <relocation>
@ -95,6 +97,19 @@
</excludes> </excludes>
</artifactSet> </artifactSet>
<filters> <filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/**</exclude>
</excludes>
</filter>
<filter>
<artifact>*:*</artifact>
<excludeDefaults>false</excludeDefaults>
<includes>
<include>de/jeff_media/jefflib/internal/nms/**</include>
</includes>
</filter>
<filter> <filter>
<artifact>*:*</artifact> <artifact>*:*</artifact>
<excludes> <excludes>
@ -187,7 +202,7 @@
<dependency> <dependency>
<groupId>de.jeff_media</groupId> <groupId>de.jeff_media</groupId>
<artifactId>JeffLib</artifactId> <artifactId>JeffLib</artifactId>
<version>7.6.0-SNAPSHOT</version> <version>7.7.0-SNAPSHOT</version>
<scope>compile</scope> <scope>compile</scope>
</dependency> </dependency>