Change package name to lowercase instead of snake case

This commit is contained in:
Evan Fiordeliso 2023-11-06 20:34:43 -05:00
parent 34e053cdb3
commit 17df9befa1
3 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@ plugins {
id("io.papermc.paperweight.userdev") version "1.5.9"
}
group = "net.fifitido.${REPO_NAME_SNAKE}"
group = "net.fifitido.${REPO_NAME_LOWER}"
version = "1.0-SNAPSHOT"
repositories {

View File

@ -1,4 +1,4 @@
package net.fifitido.$REPO_NAME_SNAKE
package net.fifitido.$REPO_NAME_LOWER
import net.kyori.adventure.text.Component

View File

@ -1,6 +1,6 @@
name: ${REPO_NAME}
version: 1.0.0
main: net.fifitido.${REPO_NAME_SNAKE}.${REPO_NAME_PASCAL}
main: net.fifitido.${REPO_NAME_LOWER}.${REPO_NAME_PASCAL}
description: ${REPO_DESCRIPTION}
author: ${REPO_OWNER}
website: https://git.fifitido.net${REPO_LINK}