MicroUtils/settings.gradle

28 lines
644 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-09-27 14:25:42 +00:00
":coroutines"
2020-09-15 12:57:41 +00:00
]
includes.each {
include it
ProjectDescriptor project = project(it)
project.name = rootProject.name + project.projectDir.absolutePath.replace("${rootDir.absolutePath}", "").replace(File.separator, ".")
}