18 lines
509 B
Kotlin
18 lines
509 B
Kotlin
plugins {
|
|
id("de.siphalor.tweed5.base-module")
|
|
id("de.siphalor.tweed5.minecraft.mod.dummy")
|
|
}
|
|
|
|
moduleInfo {
|
|
name = "Tweed 5 Weaver POJO"
|
|
description = "Provides a mechanism to derive a Tweed 5 entry structure from a POJO using its structure and annotations."
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":tweed5-construct"))
|
|
api(project(":tweed5-annotation-inheritance"))
|
|
api(project(":tweed5-core"))
|
|
api(project(":tweed5-naming-format"))
|
|
api(project(":tweed5-type-utils"))
|
|
}
|