MicroUtils/settings.gradle
2020-09-22 12:20:22 +10:00

24 lines
569 B
Groovy

rootProject.name='micro_utils'
String[] includes = [
":pagination:common",
":pagination:exposed",
":pagination:ktor:common",
":pagination:ktor:server",
":repos:common",
":repos:exposed",
":repos:ktor:client",
":repos:ktor:common",
":repos:ktor:server",
":ktor:server",
":ktor:common",
":ktor:client",
]
includes.each {
include it
ProjectDescriptor project = project(it)
project.name = rootProject.name + project.projectDir.absolutePath.replace("${rootDir.absolutePath}", "").replace(File.separator, ".")
}