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.
23 lines
400 B
Kotlin
23 lines
400 B
Kotlin
@file:Suppress("UnstableApiUsage")
|
|
|
|
rootProject.name = "ChatBot"
|
|
|
|
include("server")
|
|
include("bot-api")
|
|
include("bot-database")
|
|
include("bots")
|
|
include("management")
|
|
|
|
// Bots
|
|
include("bots:ping-bot")
|
|
project(":bots:ping-bot").name = "ping-bot"
|
|
|
|
include("bots:pizza-bot")
|
|
project(":bots:pizza-bot").name = "pizza-bot"
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
}
|