tgbotapi/settings.gradle

21 lines
537 B
Groovy
Raw Normal View History

2020-10-19 01:38:16 +00:00
pluginManagement {
2021-03-16 16:33:42 +00:00
resolutionStrategy {
eachPlugin {
if (requested.id.id == "org.jetbrains.dokka") {
useModule("org.jetbrains.dokka:dokka-gradle-plugin:${requested.version}")
}
}
}
2020-10-19 01:38:16 +00:00
repositories {
gradlePluginPortal()
}
}
2020-10-04 12:34:03 +00:00
include ":tgbotapi.core"
include ":tgbotapi.extensions.api"
include ":tgbotapi.extensions.utils"
include ":tgbotapi.extensions.behaviour_builder"
2021-10-13 08:22:01 +00:00
include ":tgbotapi.extensions.behaviour_builder.fsm"
2020-10-04 12:34:03 +00:00
include ":tgbotapi"
2020-05-10 19:09:07 +00:00
include ":docs"