core/settings.gradle

27 lines
381 B
Groovy
Raw Normal View History

rootProject.name='postssystem'
2020-07-31 06:29:23 +00:00
2020-08-05 10:21:30 +00:00
String[] includes = [
':utils:repos',
':utils:repos:exposed',
2020-07-31 06:29:23 +00:00
2020-08-05 10:21:30 +00:00
':exposed:commons',
2020-07-31 06:29:23 +00:00
2020-08-05 10:21:30 +00:00
':ktor:common',
':ktor:client',
2020-07-31 06:29:23 +00:00
2020-08-05 10:21:30 +00:00
':core:api',
':core:exposed',
':core:ktor:common',
':core:ktor:client',
':publishing:api',
':publishing:exposed',
':markups',
':markups:html'
]
includes.each {
include it
}