CrazyAuctions/common/build.gradle.kts

14 lines
248 B
Plaintext
Raw Normal View History

2023-11-11 18:53:47 +01:00
plugins {
id("root-plugin")
}
project.group = "${rootProject.group}.common"
project.version = "${rootProject.version}"
dependencies {
api(libs.configme) {
exclude("org.yaml", "snakeyaml")
}
compileOnly(libs.annotations)
}