Skip to content

Commit

Permalink
Fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
esotericenderman committed Jul 28, 2024
1 parent bd7468e commit bf26f46
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ fun pascalcase(kebabCaseString: String): String {
return pascalCaseString
}

val author = "Slqmy"
val projectAuthor = "Slqmy"

group = "net." + author.lowercase() + "." + snakecase(rootProject.name)
group = "net." + projectAuthor + "." + snakecase(rootProject.name)
version = "1.0.0-SNAPSHOT"
description = "Test plugin for paperweight-userdev"

Expand Down Expand Up @@ -85,6 +85,6 @@ tasks {
bukkitPluginYaml {
main = project.group.toString() + "." + pascalcase(rootProject.name)
load = BukkitPluginYaml.PluginLoadOrder.STARTUP
authors.add(author)
authors.add(projectAuthor)
apiVersion = paperApiVersion
}

0 comments on commit bf26f46

Please sign in to comment.