diff --git a/Bukkit/build.gradle.kts b/Bukkit/build.gradle.kts index 529e2dcb2..7c36ec6fb 100644 --- a/Bukkit/build.gradle.kts +++ b/Bukkit/build.gradle.kts @@ -18,7 +18,7 @@ repositories { } dependencies { - api(projects.plotSquaredCore) + api(projects.plotsquaredCore) // Metrics implementation(libs.bstats) diff --git a/build.gradle.kts b/build.gradle.kts index cf6113d36..bf34c9bbd 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -21,7 +21,7 @@ plugins { version = "6.8.1-SNAPSHOT" allprojects { - group = "com.plotsquared" + group = "com.intellectualsites.plotsquared" version = rootProject.version repositories { diff --git a/settings.gradle.kts b/settings.gradle.kts index c35882d55..c6eb66b57 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -2,7 +2,7 @@ rootProject.name = "PlotSquared" include("Core", "Bukkit") -project(":Core").name = "PlotSquared-Core" -project(":Bukkit").name = "PlotSquared-Bukkit" +project(":Core").name = "plotsquared-core" +project(":Bukkit").name = "plotsquared-bukkit" enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")