Skip to content

Commit

Permalink
Prevent 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 8976b40 commit 6ba23bf
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ plugins {
}

group = "gg.auroramc"
version = "1.3.12"
version = "1.3.13"

repositories {
flatDir {
Expand Down Expand Up @@ -88,6 +88,10 @@ tasks.withType<JavaCompile>().configureEach {
tasks.withType<ShadowJar> {
archiveFileName.set("AuroraQuests-${project.version}.jar")

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

relocate("co.aikar.commands", "gg.auroramc.quests.libs.acf")
relocate("co.aikar.locales", "gg.auroramc.quests.libs.locales")
relocate("org.bstats", "gg.auroramc.quests.libs.bstats")
Expand Down

0 comments on commit 6ba23bf

Please sign in to comment.