Skip to content

Commit

Permalink
Prevent paper plugin remapping since it is not needed
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikSzabo committed Dec 26, 2024
1 parent 81fc08f commit 31f5e31
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ fun loadProperties(filename: String): Properties {

plugins {
id("java")
id("io.github.goooler.shadow") version "8.1.7"
id("com.gradleup.shadow") version "8.3.3"
id("maven-publish")
}

group = "gg.auroramc"
version = "1.6.1"
version = "1.6.2"

java.sourceCompatibility = JavaVersion.VERSION_21
java.targetCompatibility = JavaVersion.VERSION_21
Expand Down Expand Up @@ -68,6 +68,10 @@ tasks.withType<JavaCompile>().configureEach {
tasks.withType<ShadowJar> {
archiveFileName.set("AuroraLevels-${project.version}.jar")

manifest {
attributes["paperweight-mappings-namespace"] = "mojang"
}

relocate("co.aikar.commands", "gg.auroramc.levels.libs.acf")
relocate("co.aikar.locales", "gg.auroramc.levels.libs.locales")

Expand Down

0 comments on commit 31f5e31

Please sign in to comment.