core/settings.gradle

38 lines
752 B
Groovy
Raw Normal View History

rootProject.name='postssystem'
2020-07-31 06:29:23 +00:00
2020-08-10 11:27:16 +00:00
String[] includes = [
':utils',
':utils:repos',
':utils:repos:common',
':utils:repos:exposed',
2020-07-31 06:29:23 +00:00
2020-08-10 11:27:16 +00:00
':exposed',
':exposed:commons',
2020-07-31 06:29:23 +00:00
2020-08-10 11:27:16 +00:00
':ktor',
':ktor:common',
':ktor:client',
2020-07-31 06:29:23 +00:00
2020-08-10 11:27:16 +00:00
':core',
':core:api',
':core:exposed',
':core:ktor',
':core:ktor:common',
':core:ktor:client',
2020-08-05 10:21:30 +00:00
2020-08-10 11:27:16 +00:00
':publishing',
':publishing:api',
':publishing:exposed',
2020-08-05 10:21:30 +00:00
2020-08-10 11:27:16 +00:00
':markups',
':markups:html'
]
includes.each {
include it
ProjectDescriptor project = project(it)
println(project.projectDir.absolutePath.replace(rootDir.absolutePath, ""))
project.name = project.projectDir.absolutePath.replace(rootDir.absolutePath, "").replace("/", ".").replaceFirst("\\.", "")
}