-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
30 lines (25 loc) · 825 Bytes
/
Copy pathsettings.gradle.kts
File metadata and controls
30 lines (25 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
rootProject.name = "telegram-bot"
include("telegram-bot-core")
include("telegram-bot-spring")
include("telegram-bot-ktor")
include("telegram-bot-test")
include("telegram-bot-source-jpa")
include("telegram-bot-source-exposed")
include("telegram-bot-templater-freemarker")
include("telegram-bot-admin-api-spring")
include("telegram-bot-admin-ui-spring")
include("example-core")
include("example-spring")
include("example-ktor")
include("kscripts")
include("kscripts:host")
include("kscripts:script-definition")
plugins {
// See https://splitties.github.io/refreshVersions
id("de.fayard.refreshVersions") version "0.60.6"
}
refreshVersions {
// Ignoring file versions.properties
file("build/tmp/refreshVersions").mkdirs()
versionsPropertiesFile = file("build/tmp/refreshVersions/versions.properties")
}