MicroUtils/settings.gradle

37 lines
1000 B
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",
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",
2020-09-20 02:17:11 +00:00
":repos:common",
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",
2020-11-23 12:10:53 +00:00
":android:recyclerview",
2020-11-23 12:32:14 +00:00
":android:alerts:common",
":android:alerts:recyclerview",
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 ->
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 12:57:41 +00:00
}