MicroUtils/settings.gradle

43 lines
1.1 KiB
Groovy
Raw Normal View History

2020-09-15 18:57:41 +06:00
rootProject.name='micro_utils'
String[] includes = [
2020-09-26 22:19:20 +06:00
":common",
2021-02-11 14:43:07 +06:00
":matrix",
2021-01-23 11:43:40 +06:00
":crypto",
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",
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",
":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",
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",
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 ->
String projectDirectory = "${rootProject.projectDir.getAbsolutePath()}${originalName.replaceAll(":", File.separator)}"
String projectName = "${rootProject.name}${originalName.replaceAll(":", ".")}"
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
}