[Refactoring] Renamed core to base, to be more in line with the other projects

This commit is contained in:
hartie95 2024-08-03 16:18:12 +02:00
parent a9af21d082
commit 2bd6c259cf
9 changed files with 4 additions and 4 deletions

View File

@ -53,7 +53,7 @@ publishing {
publications {
create<MavenPublication>("maven") {
from(components["kotlin"])
artifactId = "core"
artifactId = "base"
}
}
}

View File

@ -16,7 +16,7 @@ kotlin {
val jvmMain by getting {
dependencies {
implementation("com.google.devtools.ksp:symbol-processing-api:1.9.24-1.0.20")
implementation(project(":core"))
implementation(project(":base"))
}
}
val jvmTest by getting

View File

@ -33,7 +33,7 @@ kotlin {
sourceSets {
val commonMain by getting {
dependencies {
implementation(project(":core"))
implementation(project(":base"))
implementation("pro.streem.pbandk:pbandk-runtime:0.14.2")
implementation("org.anime_game_servers.core:gi:0.1")
}

View File

@ -17,7 +17,7 @@ plugins {
rootProject.name = "multi-proto"
include(":processor")
include(":core")
include(":base")
include(":gi")
project(":processor").projectDir = File("codeGenerator/processor")