-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
47 lines (44 loc) · 1.37 KB
/
Copy pathsettings.gradle.kts
File metadata and controls
47 lines (44 loc) · 1.37 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.5.0"
}
}
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
maven("https://jitpack.io")
}
versionCatalogs {
create("libs") {
version("kotlin", "1.9.25")
version("kotlinSerialization", "1.6.3")
version("ktor", "2.3.12")
version("gson", "2.12.0")
version("exposed", "0.52.0")
version("coroutines", "1.8.1")
version("hikariCP", "5.1.0")
version("dotenvKotlin", "6.4.1")
version("jsoup", "1.21.2")
version("logback", "1.5.11")
version("telegram", "6.3.0")
version("sqlite", "3.50.3.0")
version("okhttpInterceptor", "4.12.0")
version("mock", "1.13.8")
version("junit", "5.10.0")
version("coroutinesTest", "1.8.1")
plugin("kotlin-jvm", "org.jetbrains.kotlin.jvm")
.versionRef("kotlin")
plugin("kotlin-serialization", "org.jetbrains.kotlin.plugin.serialization")
.versionRef("kotlin")
}
}
}
rootProject.name = "kot-booking"
include("kot-booking-core")
include("kot-booking-itmo")