Skip to content

Commit af84e04

Browse files
committed
v13.3.3
1 parent db1eeac commit af84e04

File tree

5 files changed

+38
-19
lines changed

5 files changed

+38
-19
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# XSeries
44

5-
[![Minecraft](https://img.shields.io/badge/Minecraft-1.21.6-dark_green.svg)](https://shields.io/)
5+
[![Minecraft](https://img.shields.io/badge/Minecraft-1.21.7-dark_green.svg)](https://shields.io/)
66
[![Java](https://img.shields.io/badge/Java-8-dark_green.svg)](https://shields.io/)
77
[![Build Status](https://api.travis-ci.com/CryptoMorin/XSeries.svg?branch=master)](https://app.travis-ci.com/github/CryptoMorin/XSeries)
88
![maven-central](https://img.shields.io/maven-central/v/com.github.cryptomorin/XSeries)

commons/src/main/java/com/cryptomorin/xseries/AbstractReferencedClass.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424

2525
/**
2626
* A class that delegates {@link Object} methods from {@link #object()}.
27+
*
2728
* @param <T>
2829
*/
2930
public abstract class AbstractReferencedClass<T> {

core/pom.xml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -153,10 +153,6 @@
153153
<groupId>org.apache.maven.plugins</groupId>
154154
<artifactId>maven-gpg-plugin</artifactId>
155155
</plugin>
156-
<plugin>
157-
<groupId>org.sonatype.plugins</groupId>
158-
<artifactId>nexus-staging-maven-plugin</artifactId>
159-
</plugin>
160156
<plugin>
161157
<groupId>org.apache.maven.plugins</groupId>
162158
<artifactId>maven-compiler-plugin</artifactId>
@@ -173,6 +169,15 @@
173169
<groupId>org.codehaus.mojo</groupId>
174170
<artifactId>flatten-maven-plugin</artifactId>
175171
</plugin>
172+
173+
<!-- <plugin>-->
174+
<!-- <groupId>org.sonatype.plugins</groupId>-->
175+
<!-- <artifactId>nexus-staging-maven-plugin</artifactId>-->
176+
<!-- </plugin>-->
177+
<plugin>
178+
<groupId>org.sonatype.central</groupId>
179+
<artifactId>central-publishing-maven-plugin</artifactId>
180+
</plugin>
176181
</plugins>
177182

178183
<testSourceDirectory>src/test</testSourceDirectory>

core/src/main/java/com/cryptomorin/xseries/reflection/XReflection.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ public final class XReflection {
159159
* The current version of XSeries. Mostly used for the {@link com.cryptomorin.xseries.profiles.builder.XSkull} API.
160160
*/
161161
@ApiStatus.Internal
162-
public static final String XSERIES_VERSION = "13.3.2";
162+
public static final String XSERIES_VERSION = "13.3.3";
163163

164164
/**
165165
* System property ({@link System#getProperty(String)}) used to disable Minecraft capabilities
@@ -366,7 +366,7 @@ public static Integer getLatestPatchNumberOf(int minorVersion) {
366366
/* 18 */ 2,
367367
/* 19 */ 4,
368368
/* 20 */ 6,
369-
/* 21 */ 5,
369+
/* 21 */ 7,
370370
};
371371

372372
if (minorVersion > patches.length) return null;

pom.xml

Lines changed: 25 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
</modules>
4444

4545
<properties>
46-
<revision>13.3.2</revision>
46+
<revision>13.3.3</revision>
4747
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4848
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
4949
<maven.deploy.skip>true</maven.deploy.skip> <!-- Override this in core module -->
@@ -222,17 +222,6 @@
222222
</execution>
223223
</executions>
224224
</plugin>
225-
<plugin>
226-
<groupId>org.sonatype.plugins</groupId>
227-
<artifactId>nexus-staging-maven-plugin</artifactId>
228-
<version>1.7.0</version>
229-
<extensions>true</extensions>
230-
<configuration>
231-
<serverId>ossrh</serverId>
232-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
233-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
234-
</configuration>
235-
</plugin>
236225
<plugin>
237226
<groupId>org.apache.maven.plugins</groupId>
238227
<artifactId>maven-compiler-plugin</artifactId>
@@ -417,6 +406,30 @@
417406
</execution>
418407
</executions>
419408
</plugin>
409+
<plugin>
410+
<!-- https://mvnrepository.com/artifact/org.sonatype.central/central-publishing-maven-plugin -->
411+
<!-- https://central.sonatype.org/publish/publish-portal-maven -->
412+
<groupId>org.sonatype.central</groupId>
413+
<artifactId>central-publishing-maven-plugin</artifactId>
414+
<version>0.8.0</version>
415+
<extensions>true</extensions>
416+
<configuration>
417+
<publishingServerId>central</publishingServerId>
418+
<!-- <autoPublish>true</autoPublish>-->
419+
<!-- <waitUntil>published</waitUntil>-->
420+
</configuration>
421+
</plugin>
422+
<!-- <plugin>-->
423+
<!-- <groupId>org.sonatype.plugins</groupId>-->
424+
<!-- <artifactId>nexus-staging-maven-plugin</artifactId>-->
425+
<!-- <version>1.7.0</version>-->
426+
<!-- <extensions>true</extensions>-->
427+
<!-- <configuration>-->
428+
<!-- <serverId>ossrh</serverId>-->
429+
<!-- <nexusUrl>https://oss.sonatype.org/</nexusUrl>-->
430+
<!-- <autoReleaseAfterClose>true</autoReleaseAfterClose>-->
431+
<!-- </configuration>-->
432+
<!-- </plugin>-->
420433
</plugins>
421434
</pluginManagement>
422435
</build>

0 commit comments

Comments
 (0)