Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ on: [pull_request]

jobs:
build:
uses: OneLiteFeatherNET/workflows/.github/workflows/gradle-build-pr.yml@claude/implement-release-please-9inVJ
uses: OneLiteFeatherNET/workflows/.github/workflows/gradle-build-pr.yml@v2.1.0
secrets: inherit
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ on:

jobs:
publish:
uses: OneLiteFeatherNET/workflows/.github/workflows/gradle-publish.yml@v2.0.0
uses: OneLiteFeatherNET/workflows/.github/workflows/gradle-publish.yml@v2.1.0
secrets: inherit
12 changes: 7 additions & 5 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

dependencies {
compileOnly(libs.luckperms.api)
implementation(libs.luckperms.api)
implementation(project(":api"))
implementation(project(":common"))
implementation(platform(libs.mycelium.bom))
Expand All @@ -18,10 +18,7 @@ dependencies {
implementation(libs.minestom)
implementation(libs.butterfly.minestom)

implementation(libs.luckperms.common)
implementation(libs.luckperms.common.loader.utils)
implementation(libs.luckperms.minestom.app)
implementation(libs.luckperms.minestom)
implementation(libs.luckperms.minestom.loader)

implementation(platform(libs.cloudnet.bom))
implementation(libs.cloudnet.jvm.wrapper)
Expand Down Expand Up @@ -61,6 +58,11 @@ tasks {
archiveClassifier.set("")
archiveFileName.set("app-titan.jar")
mergeServiceFiles()
// Shaded deps ship signed and multi-release jars that break a
// relocation-free application fat jar; drop signatures and module-info.
exclude("META-INF/*.SF", "META-INF/*.DSA", "META-INF/*.RSA")
exclude("module-info.class", "META-INF/versions/**/module-info.class")
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}
test {
useJUnitPlatform()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import eu.cloudnetservice.driver.inject.InjectionLayer;
import eu.cloudnetservice.modules.bridge.impl.platform.minestom.MinestomBridgeExtension;
import net.minestom.server.MinecraftServer;
import net.onelitefeather.titan.app.luckperms.MinestomLoader;
import me.lucko.luckperms.minestom.loader.MinestomLoader;

public class TitanApplication {

Expand Down

This file was deleted.

2 changes: 1 addition & 1 deletion common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {

dependencies {
implementation(project(":api"))
implementation(enforcedPlatform(libs.mycelium.bom))
implementation(platform(libs.mycelium.bom))
implementation(platform(libs.aonyx.bom))
implementation(libs.minestom)
implementation(libs.togglz)
Expand Down
7 changes: 4 additions & 3 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ dependencyResolutionManagement {

versionCatalogs {
create("libs") {
version("aonyx-bom", "0.7.1")
version("aonyx-bom", "0.7.2")
version("mycelium-bom", "1.6.4")
version("cloudnet", "4.0.0-RC17-SNAPSHOT")
version("butterfly", "1.0.21")
version("butterfly", "1.0.23")

version("luckperms", "5.6-SNAPSHOT")

Expand All @@ -43,7 +43,7 @@ dependencyResolutionManagement {
// Minestom
library("aonyx-bom", "net.onelitefeather", "aonyx-bom").versionRef("aonyx-bom")
library("mycelium-bom", "net.onelitefeather", "mycelium-bom").versionRef("mycelium-bom")
library("minestom","net.minestom", "minestom").withoutVersion()
library("minestom","net.minestom", "minestom").version("2026.05.17-1.21.11")
library("aves", "net.theevilreaper", "aves").version("1.9.0")
library("adventure.minimessage", "net.kyori", "adventure-text-minimessage").withoutVersion()
library("butterfly-minestom", "net.onelitefeather", "butterfly-minestom").versionRef("butterfly")
Expand All @@ -69,6 +69,7 @@ dependencyResolutionManagement {
library("luckperms.minestom.app", "net.luckperms", "minestom-app").versionRef("luckperms")
library("luckperms.common", "net.luckperms", "common").versionRef("luckperms")
library("luckperms.common.loader.utils", "net.luckperms", "loader-utils").versionRef("luckperms")
library("luckperms.minestom.loader", "net.luckperms", "minestom-loader").versionRef("luckperms")

library("cyano", "net.onelitefeather", "cyano").withoutVersion()
library("mockito", "org.mockito", "mockito-core").versionRef("mockito")
Expand Down
2 changes: 1 addition & 1 deletion setup/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
dependencies {
implementation(project(":common"))
implementation(project(":api"))
implementation(enforcedPlatform(libs.mycelium.bom))
implementation(platform(libs.mycelium.bom))
implementation(platform(libs.aonyx.bom))
implementation(libs.minestom)
implementation(libs.togglz)
Expand Down
Loading