mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2024-11-16 21:33:49 +00:00
28 lines
644 B
Groovy
28 lines
644 B
Groovy
rootProject.name='micro_utils'
|
|
|
|
String[] includes = [
|
|
":common",
|
|
":pagination:common",
|
|
":pagination:exposed",
|
|
":pagination:ktor:common",
|
|
":pagination:ktor:server",
|
|
":mime_types",
|
|
":repos:common",
|
|
":repos:exposed",
|
|
":repos:inmemory",
|
|
":repos:ktor:client",
|
|
":repos:ktor:common",
|
|
":repos:ktor:server",
|
|
":ktor:server",
|
|
":ktor:common",
|
|
":ktor:client",
|
|
":coroutines"
|
|
]
|
|
|
|
|
|
includes.each {
|
|
include it
|
|
ProjectDescriptor project = project(it)
|
|
project.name = rootProject.name + project.projectDir.absolutePath.replace("${rootDir.absolutePath}", "").replace(File.separator, ".")
|
|
}
|