2020-09-15 18:57:41 +06:00
|
|
|
rootProject.name='micro_utils'
|
|
|
|
|
|
|
|
String[] includes = [
|
2020-09-26 22:19:20 +06:00
|
|
|
":common",
|
2022-03-12 00:55:03 +06:00
|
|
|
":common:compose",
|
2021-02-11 14:43:07 +06:00
|
|
|
":matrix",
|
2022-12-09 11:09:32 +06:00
|
|
|
":safe_wrapper",
|
2021-01-23 11:43:40 +06:00
|
|
|
":crypto",
|
2022-09-14 22:14:20 +06:00
|
|
|
":koin",
|
2020-12-14 19:17:16 +06:00
|
|
|
":selector:common",
|
2020-09-15 18:57:41 +06:00
|
|
|
":pagination:common",
|
|
|
|
":pagination:exposed",
|
|
|
|
":pagination:ktor:common",
|
|
|
|
":pagination:ktor:server",
|
2020-09-26 21:57:55 +06:00
|
|
|
":mime_types",
|
2021-08-04 11:04:03 +06:00
|
|
|
":language_codes",
|
|
|
|
":language_codes:generator",
|
2020-09-20 12:17:11 +10:00
|
|
|
":repos:common",
|
2021-03-24 13:01:15 +06:00
|
|
|
":repos:cache",
|
2020-09-22 11:47:01 +10:00
|
|
|
":repos:exposed",
|
2020-10-14 14:22:58 +06:00
|
|
|
":repos:inmemory",
|
2020-09-22 11:47:01 +10:00
|
|
|
":repos:ktor:client",
|
|
|
|
":repos:ktor:common",
|
|
|
|
":repos:ktor:server",
|
2020-09-22 12:20:22 +10:00
|
|
|
":ktor:server",
|
|
|
|
":ktor:common",
|
|
|
|
":ktor:client",
|
2020-10-28 14:47:12 +06:00
|
|
|
":coroutines",
|
2022-03-10 17:47:37 +06:00
|
|
|
":coroutines:compose",
|
2020-11-23 18:10:53 +06:00
|
|
|
":android:recyclerview",
|
2020-11-23 18:32:14 +06:00
|
|
|
":android:alerts:common",
|
|
|
|
":android:alerts:recyclerview",
|
2021-01-14 14:22:26 +06:00
|
|
|
":serialization:base64",
|
2021-01-21 10:10:52 +06:00
|
|
|
":serialization:encapsulator",
|
2021-04-15 14:15:40 +06:00
|
|
|
":serialization:typed_serializer",
|
2022-12-05 21:19:38 +06:00
|
|
|
":startup:plugin",
|
|
|
|
":startup:launcher",
|
2020-10-28 14:47:12 +06:00
|
|
|
|
2021-06-19 14:41:29 +06:00
|
|
|
":fsm:common",
|
2021-06-20 17:11:51 +06:00
|
|
|
":fsm:repos:common",
|
2021-06-19 14:41:29 +06:00
|
|
|
|
2020-10-28 14:47:12 +06:00
|
|
|
":dokka"
|
2020-09-15 18:57:41 +06:00
|
|
|
]
|
|
|
|
|
|
|
|
|
2020-11-10 12:47:47 +06:00
|
|
|
includes.each { originalName ->
|
2022-03-10 17:04:05 +06:00
|
|
|
String projectDirectory = "${rootProject.projectDir.getAbsolutePath()}${originalName.replace(":", File.separator)}"
|
|
|
|
String projectName = "${rootProject.name}${originalName.replace(":", ".")}"
|
2020-11-10 12:47:47 +06:00
|
|
|
String projectIdentifier = ":${projectName}"
|
|
|
|
include projectIdentifier
|
|
|
|
ProjectDescriptor project = project(projectIdentifier)
|
|
|
|
project.name = projectName
|
|
|
|
project.projectDir = new File(projectDirectory)
|
2020-09-15 18:57:41 +06:00
|
|
|
}
|
2022-03-10 17:04:05 +06:00
|
|
|
|
|
|
|
enableFeaturePreview("VERSION_CATALOGS")
|