MicroUtils/settings.gradle

65 lines
1.6 KiB
Groovy
Raw Normal View History

2020-09-15 12:57:41 +00:00
rootProject.name='micro_utils'
String[] includes = [
2020-09-26 16:19:20 +00:00
":common",
":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",
":language_codes",
":language_codes:generator",
2020-09-20 02:17:11 +00:00
":repos:common",
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",
":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",
":coroutines:compose",
2020-11-23 12:10:53 +00:00
":android:recyclerview",
":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-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
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
}