-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
settings.gradle.kts
101 lines (83 loc) · 4.5 KB
/
settings.gradle.kts
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/*
* Copyright © 2024 Allan Galarza
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
rootProject.name = "TibiaKt"
include("tibiakt-core")
include("tibiakt-client")
include("tibiakt-server")
dependencyResolutionManagement {
versionCatalogs {
create("libs") {
plugin("gradle-versions", "com.github.ben-manes.versions").version("0.51.0")
plugin("detekt", "io.gitlab.arturbosch.detekt").version("1.23.6")
plugin("dokka", "org.jetbrains.dokka").version("1.9.20")
plugin("sonarqube", "org.sonarqube").version("5.1.0.4882")
plugin("kover", "org.jetbrains.kotlinx.kover").version("0.8.3")
version("jsoup", "1.18.1")
version("kotest", "5.9.1")
version("kotlin", "2.0.21")
version("kotlinLogging", "3.0.5")
version("kotlinxDatetime", "0.6.1")
version("kotlinxSerialization", "1.7.3")
version("ktor", "3.0.1")
version("logback", "1.5.12")
library("kotlinx-datetime", "org.jetbrains.kotlinx", "kotlinx-datetime").versionRef("kotlinxDatetime")
library("kotlinx-serialization-json", "org.jetbrains.kotlinx", "kotlinx-serialization-json").versionRef("kotlinxSerialization")
library("jsoup", "org.jsoup", "jsoup").versionRef("jsoup")
library("kotlinLogging", "io.github.microutils", "kotlin-logging").versionRef("kotlinLogging")
library("kotest-runner-junit5", "io.kotest", "kotest-runner-junit5").versionRef("kotest")
library("kotest-assertions-core", "io.kotest", "kotest-assertions-core").versionRef("kotest")
library("kotest-property", "io.kotest", "kotest-property").versionRef("kotest")
library("kotest-framework-datatest", "io.kotest", "kotest-framework-datatest").versionRef("kotest")
library("ktor-client-encoding", "io.ktor", "ktor-client-encoding").versionRef("ktor")
library("ktor-client-cio", "io.ktor", "ktor-client-cio").versionRef("ktor")
library("ktor-client-core", "io.ktor", "ktor-client-core").versionRef("ktor")
library("ktor-client-content-negotiation", "io.ktor", "ktor-client-content-negotiation").versionRef("ktor")
library("ktor-client-mock", "io.ktor", "ktor-client-mock").versionRef("ktor")
library("ktor-server-cio", "io.ktor", "ktor-server-cio").versionRef("ktor")
library("ktor-server-content-negotiation", "io.ktor", "ktor-server-content-negotiation").versionRef("ktor")
library("ktor-server-data-conversion", "io.ktor", "ktor-server-data-conversion").versionRef("ktor")
library("ktor-server-status-pages", "io.ktor", "ktor-server-status-pages").versionRef("ktor")
library("ktor-server-locations", "io.ktor", "ktor-server-locations").versionRef("ktor")
library("ktor-server-resources", "io.ktor", "ktor-server-resources").versionRef("ktor")
library("ktor-serialization", "io.ktor", "ktor-serialization").versionRef("ktor")
library("ktor-serialization-json", "io.ktor", "ktor-serialization-kotlinx-json").versionRef("ktor")
library("logback", "ch.qos.logback", "logback-classic").versionRef("logback")
bundle(
"ktor-client", listOf(
"ktor-client-encoding",
"ktor-client-cio",
"ktor-client-core",
"ktor-client-content-negotiation",
)
)
bundle(
"ktor-server", listOf(
"ktor-server-cio",
"ktor-server-content-negotiation",
"ktor-server-data-conversion",
"ktor-server-status-pages",
"ktor-server-resources",
)
)
bundle("kotest", listOf(
"kotest-runner-junit5",
"kotest-assertions-core",
"kotest-property",
"kotest-framework-datatest",
))
}
}
}