2021-04-11 18:15:58 +08:00
|
|
|
rootProject.name = "TursomServer"
|
2021-08-23 10:39:03 +08:00
|
|
|
includeBuild("ts-gradle")
|
2021-04-11 18:48:18 +08:00
|
|
|
include("ts-core")
|
|
|
|
include("ts-core:ts-encrypt")
|
|
|
|
include("ts-core:ts-buffer")
|
|
|
|
include("ts-core:ts-datastruct")
|
2021-04-11 18:15:58 +08:00
|
|
|
include("ts-core:ts-pool")
|
|
|
|
include("ts-core:ts-hash")
|
2021-04-11 18:48:18 +08:00
|
|
|
include("ts-core:ts-log")
|
2021-10-14 09:58:18 +08:00
|
|
|
include("ts-core:ts-curry")
|
2021-04-11 18:56:37 +08:00
|
|
|
include("ts-core:ts-delegation")
|
2021-04-12 11:22:54 +08:00
|
|
|
include("ts-core:ts-delegation:ts-observer")
|
2021-04-11 22:48:14 +08:00
|
|
|
include("ts-core:ts-clone")
|
|
|
|
include("ts-core:ts-mail")
|
|
|
|
include("ts-core:ts-coroutine")
|
2021-04-11 23:04:57 +08:00
|
|
|
include("ts-core:ts-coroutine:ts-coroutine-lock")
|
2021-04-11 22:59:42 +08:00
|
|
|
include("ts-core:ts-ws-client")
|
|
|
|
include("ts-core:ts-yaml")
|
2021-04-11 23:27:15 +08:00
|
|
|
include("ts-core:ts-json")
|
2021-04-12 14:26:44 +08:00
|
|
|
include("ts-core:ts-xml")
|
2021-04-19 15:47:15 +08:00
|
|
|
include("ts-core:ts-async-http")
|
2021-08-25 14:31:58 +08:00
|
|
|
include("ts-core:ts-proxy")
|
2022-04-08 00:44:52 +08:00
|
|
|
include("ts-core:ts-proxy-jdk")
|
2022-01-08 21:22:42 +08:00
|
|
|
include("ts-core:ts-reflect")
|
2022-04-08 00:44:52 +08:00
|
|
|
include("ts-core:ts-reflectasm")
|
2021-04-11 18:48:18 +08:00
|
|
|
include("ts-socket")
|
2021-04-11 23:27:15 +08:00
|
|
|
include("ts-web")
|
|
|
|
include("ts-web:ts-web-netty")
|
2022-04-08 20:28:01 +08:00
|
|
|
include("ts-web:ts-web-netty-client")
|
2022-04-10 17:00:19 +08:00
|
|
|
include("ts-web:ts-web-okhttp")
|
2021-04-11 23:38:28 +08:00
|
|
|
include("ts-web:ts-web-coroutine")
|
2021-04-12 10:47:31 +08:00
|
|
|
include("ts-database")
|
2021-11-17 14:40:33 +08:00
|
|
|
include("ts-database:ts-ktorm")
|
|
|
|
include("ts-database:ts-mybatisplus")
|
2021-04-12 13:55:42 +08:00
|
|
|
include("ts-database:ts-mongodb")
|
|
|
|
include("ts-database:ts-mongodb:ts-mongodb-spring")
|
2021-04-12 14:04:58 +08:00
|
|
|
include("ts-database:ts-redis")
|
2023-10-27 00:46:00 +08:00
|
|
|
|
|
|
|
dependencyResolutionManagement {
|
|
|
|
versionCatalogs {
|
|
|
|
create("libs") {
|
2023-10-27 18:11:28 +08:00
|
|
|
version("kotlin-version", "1.9.20-RC2")
|
|
|
|
|
2023-10-27 00:46:00 +08:00
|
|
|
val kotlinCoroutineVersion = "1.7.3"
|
|
|
|
version("kotlin-coroutines", kotlinCoroutineVersion)
|
|
|
|
library(
|
|
|
|
"kotlin-coroutines-core",
|
|
|
|
"org.jetbrains.kotlinx",
|
|
|
|
"kotlinx-coroutines-core"
|
|
|
|
).versionRef("kotlin-coroutines")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
maven {
|
|
|
|
url = uri("https://jmp.mvn.tursom.cn:20080/repository/maven-public/")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|