Skip to content

Commit 81bb82a

Browse files
committed
v13.2.0
1 parent 920ff3c commit 81bb82a

File tree

5 files changed

+34
-26
lines changed

5 files changed

+34
-26
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,7 @@ tmp/**/*
4444
local.properties
4545
.classpath
4646
.settings/
47-
.loadpath
47+
.loadpath
48+
49+
# XSeries Custom
50+
.flattened-pom.xml

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,13 @@ Library mainly designed to provide cross-version support for Minecraft Bukkit pl
1010
but it also includes numerous extra methods to help developers design their plugins easier and efficiently.
1111
Some utilities are completely unrelated to cross-version support such as NoteBlockMusic.
1212

13-
Don't forget to add `api-version: "1.13"` to your `plugin.yml`.
14-
This will keep the plugin working even if the server is not 1.13
13+
> [!IMPORTANT]
14+
> Don't forget to add `api-version: "1.13"` to your **plugin.yml**.
15+
> This will not prevent your plugin from working even if the server is not using Minecraft v1.13
16+
17+
> [!CAUTION]
18+
> Make sure to [shade](https://github.com/CryptoMorin/XSeries?tab=readme-ov-file#shading)
19+
> the library to prevent conflicts with other plugins that also use XSeries.
1520
1621
This project aims to provide quality utilities with high performance using the latest, yet efficient techniques.
1722
Although support for old versions (like 1.8) will still remain for future updates, I highly encourage all developers
@@ -125,7 +130,7 @@ To shade the library, add the following under your maven plugins:
125130
</plugin>
126131
```
127132

128-
### [Gradle Shadow plugin](https://imperceptiblethoughts.com/shadow/)
133+
### [Gradle Shadow plugin](https://gradleup.com/shadow/)
129134

130135
Gradle (Kotlin DSL)
131136

core/.flattened-pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<modelVersion>4.0.0</modelVersion>
2626
<groupId>com.github.cryptomorin</groupId>
2727
<artifactId>XSeries</artifactId>
28-
<version>13.1.0</version>
28+
<version>13.2.0</version>
2929
<name>XSeries</name>
3030
<description>A set of utilities for Minecraft plugins</description>
3131
<url>https://www.spigotmc.org/threads/378136/XSeries/</url>
@@ -69,19 +69,19 @@
6969
<dependency>
7070
<groupId>com.github.cryptomorin</groupId>
7171
<artifactId>commons</artifactId>
72-
<version>13.1.0</version>
72+
<version>13.2.0</version>
7373
<scope>compile</scope>
7474
</dependency>
7575
<dependency>
7676
<groupId>com.github.cryptomorin</groupId>
7777
<artifactId>new-bukkit</artifactId>
78-
<version>13.1.0</version>
78+
<version>13.2.0</version>
7979
<scope>compile</scope>
8080
</dependency>
8181
<dependency>
8282
<groupId>com.github.cryptomorin</groupId>
8383
<artifactId>old-bukkit</artifactId>
84-
<version>13.1.0</version>
84+
<version>13.2.0</version>
8585
<scope>compile</scope>
8686
</dependency>
8787
<dependency>

core/dependency-reduced-pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.github.cryptomorin</groupId>
55
<artifactId>XSeries</artifactId>
66
<name>XSeries</name>
7-
<version>13.1.0</version>
7+
<version>13.2.0</version>
88
<description>A set of utilities for Minecraft plugins</description>
99
<url>https://www.spigotmc.org/threads/378136/XSeries/</url>
1010
<issueManagement>

pom.xml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,23 @@
4242
<module>core</module>
4343
</modules>
4444

45+
<properties>
46+
<revision>13.2.0</revision>
47+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
48+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
49+
<maven.deploy.skip>true</maven.deploy.skip> <!-- Override this in core module -->
50+
51+
<!--##### Latest Versions #####-->
52+
<!-- https://repo.codemc.io/service/rest/repository/browse/nms/org/spigotmc/spigot/ -->
53+
<!-- mvn install:install-file "-Dfile=server.jar" -DgroupId=org.spigotmc -DartifactId=spigot -Dversion=1.21.4-R0.1-EXPR -Dpackaging=jar -DgeneratePom=true -->
54+
<spigotVersion>1.21.5-R0.1-SNAPSHOT</spigotVersion>
55+
<jopt>5.0.4</jopt>
56+
<testVer/>
57+
<testJavaPath/>
58+
<testJava>21</testJava>
59+
<asm>9.7.1</asm>
60+
</properties>
61+
4562
<issueManagement>
4663
<system>GitHub Issues</system>
4764
<url>https://github.com/CryptoMorin/XSeries/issues</url>
@@ -99,23 +116,6 @@
99116
</repository>
100117
</repositories>
101118

102-
<properties>
103-
<revision>13.1.0</revision>
104-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
105-
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
106-
<maven.deploy.skip>true</maven.deploy.skip> <!-- Override this in core module -->
107-
108-
<!--##### Latest Versions #####-->
109-
<!-- https://repo.codemc.io/service/rest/repository/browse/nms/org/spigotmc/spigot/ -->
110-
<!-- mvn install:install-file "-Dfile=server.jar" -DgroupId=org.spigotmc -DartifactId=spigot -Dversion=1.21.4-R0.1-EXPR -Dpackaging=jar -DgeneratePom=true -->
111-
<spigotVersion>1.21.5-R0.1-SNAPSHOT</spigotVersion>
112-
<jopt>5.0.4</jopt>
113-
<testVer/>
114-
<testJavaPath/>
115-
<testJava>21</testJava>
116-
<asm>9.7.1</asm>
117-
</properties>
118-
119119

120120
<build>
121121
<!-- We use pluginManagement tag because: -->

0 commit comments

Comments
 (0)