9
0
mirror of https://gitlab.com/SamB440/rpgregions-2.git synced 2025-12-19 14:59:19 +00:00

Rename modern module to integrations

This commit is contained in:
SamB440
2025-09-01 18:24:27 +01:00
parent d02472f438
commit 5a807aa8b0
11 changed files with 3 additions and 3 deletions

View File

@@ -13,7 +13,7 @@ repositories {
dependencies { dependencies {
implementation(project(":api")) implementation(project(":api"))
implementation(project(":folia")) implementation(project(":folia"))
implementation(project(":modern")) implementation(project(":integrations"))
testImplementation("com.github.seeseemelk:MockBukkit-v1.21:3.133.2") testImplementation("com.github.seeseemelk:MockBukkit-v1.21:3.133.2")
testImplementation("org.reflections:reflections:0.10.2") testImplementation("org.reflections:reflections:0.10.2")
@@ -104,7 +104,7 @@ tasks {
shadowJar { shadowJar {
archiveBaseName.set("rpgregions-2") archiveBaseName.set("rpgregions-2")
minimize { minimize {
exclude(project(":modern")) exclude(project(":integrations"))
exclude(dependency("net.wesjd:anvilgui:1.10.7-SNAPSHOT")) exclude(dependency("net.wesjd:anvilgui:1.10.7-SNAPSHOT"))
} }
} }

View File

@@ -9,4 +9,4 @@ plugins {
} }
rootProject.name = "rpgregions-2" rootProject.name = "rpgregions-2"
include("rpgregions", "modern", "api", "folia") include("rpgregions", "integrations", "api", "folia")