add post creating business case

This commit is contained in:
2020-09-10 00:04:25 +06:00
parent cf1aa3ae0f
commit 60725d9fa3
31 changed files with 332 additions and 37 deletions

View File

@@ -27,12 +27,16 @@ String[] includes = [
':publishing:exposed',
':publishing:ktor:common',
':publishing:ktor:client',
':publishing:ktor:server'
':publishing:ktor:server',
':business_cases:post_creating:server',
':business_cases:post_creating:common',
':business_cases:post_creating:client',
]
includes.each {
include it
ProjectDescriptor project = project(it)
project.name = rootProject.name + project.projectDir.absolutePath.replace(rootDir.absolutePath, "").replace(File.separator, ".")
project.name = project.projectDir.absolutePath.replace("${rootDir.absolutePath}${File.separator}", "").replace(File.separator, ".")
}