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