tgbotapi/settings.gradle

22 lines
529 B
Groovy
Raw Permalink 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"
2022-08-05 18:39:46 +00:00
include ":tgbotapi.ksp"
2021-10-18 09:20:25 +00:00
include ":tgbotapi.api"
include ":tgbotapi.utils"
include ":tgbotapi.behaviour_builder"
include ":tgbotapi.behaviour_builder.fsm"
2020-10-04 12:34:03 +00:00
include ":tgbotapi"
2022-04-18 11:05:28 +00:00
include ":tgbotapi.webapps"