1
0
mirror of https://github.com/lucko/LuckPerms.git synced 2025-08-28 00:29:47 +02:00

Release API v5.5

This commit is contained in:
Luck
2025-05-25 08:59:47 +01:00
parent 27e7551e2b
commit 0486bc885b
3 changed files with 9 additions and 9 deletions

View File

@@ -1,5 +1,5 @@
group = 'net.luckperms'
project.version = '5.4'
project.version = '5.5'
jar {
manifest {
@@ -8,8 +8,8 @@ jar {
}
dependencies {
compileOnly 'org.checkerframework:checker-qual:3.21.2'
compileOnly 'org.jetbrains:annotations:23.1.0'
compileOnly 'org.checkerframework:checker-qual:3.49.3'
compileOnly 'org.jetbrains:annotations:26.0.2'
}
// Only used occasionally for deployment - not needed for normal builds.
@@ -24,13 +24,13 @@ if (project.hasProperty('sonatypeUsername') && project.hasProperty('sonatypePass
options.charSet = 'UTF-8'
options.links(
'https://checkerframework.org/api/',
'https://javadoc.io/static/org.jetbrains/annotations/23.0.0/'
'https://javadoc.io/static/org.jetbrains/annotations/26.0.2/'
)
options.addStringOption('Xdoclint:none', '-quiet')
options.addStringOption('-since', '5.0,5.1,5.2,5.3,5.4,5.5')
if (JavaVersion.current() > JavaVersion.VERSION_1_8) {
options.links.add('https://docs.oracle.com/en/java/javase/11/docs/api/')
options.links.add('https://docs.oracle.com/en/java/javase/21/docs/api/')
} else {
options.links.add('https://docs.oracle.com/javase/8/docs/api/')
}
@@ -63,7 +63,7 @@ if (project.hasProperty('sonatypeUsername') && project.hasProperty('sonatypePass
pom {
name = 'LuckPerms API'
description = 'A permissions plugin for Minecraft servers.'
description = 'A permissions manager for Minecraft servers.'
url = 'https://luckperms.net'
licenses {

View File

@@ -1,6 +1,6 @@
<body>
<p>
LuckPerms is a permissions plugin for Minecraft servers. It allows server admins to control what
LuckPerms is a permissions manager for Minecraft servers. It allows server admins to control what
features players can use by creating groups and assigning permissions.
</p>
<h4>Useful Links</h4>

View File

@@ -13,7 +13,7 @@ subprojects {
apply plugin: 'org.cadixdev.licenser'
group = 'me.lucko.luckperms'
version = '5.4-SNAPSHOT'
version = '5.5-SNAPSHOT'
sourceCompatibility = 1.8
targetCompatibility = 1.8
@@ -52,7 +52,7 @@ subprojects {
}
project.ext.majorVersion = '5'
project.ext.minorVersion = '4'
project.ext.minorVersion = '5'
project.ext.patchVersion = determinePatchVersion()
project.ext.apiVersion = project.ext.majorVersion + '.' + project.ext.minorVersion
project.ext.fullVersion = project.ext.apiVersion + '.' + project.ext.patchVersion