Update to 26.2

This commit is contained in:
Len 2026-08-01 02:40:02 -05:00
parent 3c97b6037d
commit 81e9e085c1
3 changed files with 10 additions and 6 deletions

View File

@ -3,12 +3,11 @@ plugins {
}
group = "com.alttd"
version = "1.0.0-SNAPSHOT"
version = System.getenv("BUILD_NUMBER") ?: "1.0.0-SNAPSHOT"
description = "Altitude Quests plugin."
apply<JavaLibraryPlugin>()
tasks {
withType<JavaCompile> {
options.encoding = Charsets.UTF_8.name()
@ -20,8 +19,6 @@ tasks {
}
dependencies {
compileOnly("com.alttd.cosmos:cosmos-api:1.21.8-R0.1-SNAPSHOT") {
isChanging = true
}
compileOnly("com.alttd.cosmos:cosmos-api:26.2.build.17-stable")
compileOnly("com.alttd.datalock:api:1.1.0-SNAPSHOT")
}

View File

@ -13,6 +13,13 @@ dependencyResolutionManagement {
password = nexusPass
}
}
maven {
url = uri("https://repo.alttd.com/repository/alttd/")
credentials {
username = nexusUser
password = nexusPass
}
}
maven("https://repo.destro.xyz/snapshots") // Altitude - Cosmos
maven("https://jitpack.io") { // Vault
content { includeGroup("com.github.milkbowl") }

View File

@ -12,7 +12,7 @@ import org.bukkit.event.EventHandler;
import org.bukkit.event.Listener;
import org.bukkit.event.player.PlayerQuitEvent;
import javax.annotation.Nullable;
import org.jspecify.annotations.Nullable;
import java.util.UUID;
public class LogoutEvent implements Listener {