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.
26 lines
586 B
Plaintext
26 lines
586 B
Plaintext
1 year ago
|
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.bundles.log4j2)
|
||
|
implementation(libs.bundles.jackson)
|
||
|
|
||
|
bots.forEach {
|
||
|
implementation(project(it.path))
|
||
|
}
|
||
|
}
|
||
|
|
||
|
application {
|
||
|
mainClass.set("eu.jonahbauer.chat.server.Main")
|
||
|
mainModule.set("eu.jonahbauer.chat.server")
|
||
|
applicationDefaultJvmArgs = listOf("--enable-preview")
|
||
|
}
|