14 lines
260 B
Kotlin
14 lines
260 B
Kotlin
import dev.panuszewski.gradle.pluginMarker
|
|
|
|
plugins {
|
|
`kotlin-dsl`
|
|
}
|
|
|
|
group = "de.siphalor.tweed5"
|
|
|
|
dependencies {
|
|
implementation(project(":helpers"))
|
|
implementation(pluginMarker(libs.plugins.lombok))
|
|
implementation(pluginMarker(libs.plugins.shadow))
|
|
}
|