mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI.git
synced 2024-10-31 21:43:48 +00:00
23 lines
545 B
Groovy
23 lines
545 B
Groovy
pluginManagement {
|
|
resolutionStrategy {
|
|
eachPlugin {
|
|
if (requested.id.id == "org.jetbrains.dokka") {
|
|
useModule("org.jetbrains.dokka:dokka-gradle-plugin:${requested.version}")
|
|
}
|
|
}
|
|
}
|
|
repositories {
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
include ":tgbotapi.core"
|
|
include ":tgbotapi.ksp"
|
|
include ":tgbotapi.api"
|
|
include ":tgbotapi.utils"
|
|
include ":tgbotapi.behaviour_builder"
|
|
include ":tgbotapi.behaviour_builder.fsm"
|
|
include ":tgbotapi"
|
|
include ":tgbotapi.webapps"
|
|
include ":docs"
|