Skip to content

Commit

Permalink
oof
Browse files Browse the repository at this point in the history
  • Loading branch information
MATRIX-feather committed Oct 9, 2024
1 parent cd48b6b commit 330a888
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -101,14 +101,14 @@ dependencies {
}
}

group = "xiamomc.morph"
group = "xyz.nifeather.morph"
version = "${project.property("project_version")}"
description = "A morph plugin that aims to provide many features out-of-the-box"
java.sourceCompatibility = JavaVersion.VERSION_21

bukkit {
load = BukkitPluginDescription.PluginLoadOrder.POSTWORLD
main = "xiamomc.morph.MorphPlugin"
main = "xyz.nifeather.morph.MorphPlugin"
apiVersion = "1.19"
authors = listOf("MATRIX-feather")
depend = listOf()
Expand Down Expand Up @@ -206,10 +206,10 @@ tasks.build {
tasks.shadowJar {
minimize()
archiveFileName = "FeatherMorph-${project.property("project_version")}+${project.property("mc_version")}-final.jar"
relocate("xiamomc.pluginbase", "xiamomc.morph.shaded.pluginbase")
relocate("org.bstats", "xiamomc.morph.shaded.bstats")
relocate("de.tr7zw.changeme.nbtapi", "xiamomc.morph.shaded.nbtapi")
relocate("de.themoep.inventorygui", "xiamomc.morph.shaded.inventorygui")
relocate("xiamomc.pluginbase", "xyz.nifeather.morph.shaded.pluginbase")
relocate("org.bstats", "xyz.nifeather.morph.shaded.bstats")
relocate("de.tr7zw.changeme.nbtapi", "xyz.nifeather.morph.shaded.nbtapi")
relocate("de.themoep.inventorygui", "xyz.nifeather.morph.shaded.inventorygui")
}

tasks.withType<JavaCompile>() {
Expand Down

0 comments on commit 330a888

Please sign in to comment.