You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
597 B
Kotlin
28 lines
597 B
Kotlin
plugins {
|
|
id("chat-bot.java-conventions")
|
|
application
|
|
}
|
|
|
|
group = "eu.jonahbauer.chat"
|
|
version = "0.1.0-SNAPSHOT"
|
|
|
|
val bots = project(":bots").subprojects
|
|
|
|
dependencies {
|
|
implementation(project(":bot-api"))
|
|
implementation(project(":management"))
|
|
implementation(libs.gson)
|
|
implementation(libs.slf4j)
|
|
|
|
runtimeOnly(libs.logback)
|
|
|
|
bots.forEach {
|
|
implementation(project(it.path))
|
|
}
|
|
}
|
|
|
|
application {
|
|
mainClass.set("eu.jonahbauer.chat.server.Main")
|
|
mainModule.set("eu.jonahbauer.chat.server")
|
|
applicationDefaultJvmArgs = listOf("--enable-preview")
|
|
} |