This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** [name] 디렉터리 아래의 모듈을 모두 탐색하여 `AAA:BBB:CCC` 형식으로 반환한다. */ | |
fun submodule(name: String): Array<String> { | |
// 모듈 디렉터리 탐색하기 | |
val submoduleDirs: List<File> = fileTree(name) | |
.matching { include("**/*.gradle.kts") } | |
.map { gradleScript: File -> gradleScript.parentFile } | |
.distinct() | |
// gradle 프로젝트 이름 형식으로 고치기 | |
return submoduleDirs |
OlderNewer