14 lines
281 B
Kotlin
14 lines
281 B
Kotlin
plugins {
|
|
id("de.siphalor.tweed5.base-module")
|
|
id("de.siphalor.tweed5.minecraft.mod.dummy")
|
|
id("de.siphalor.tweed5.shadow.explicit")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":tweed5-serde-api"))
|
|
api(libs.gson)
|
|
|
|
testImplementation(project(":serde-json-test-utils"))
|
|
}
|
|
|