Sort by filename for easier search in the logs.
This commit is contained in:
parent
7537c3de7c
commit
981632b7a4
2 changed files with 3 additions and 2 deletions
|
|
@ -54,7 +54,7 @@ fun DependencyHandlerScope.composeDependencies(libs: LibrariesForLibs) {
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun DependencyHandlerScope.addImplementationProjects(directory: File, path: String, nameFilter: String) {
|
private fun DependencyHandlerScope.addImplementationProjects(directory: File, path: String, nameFilter: String) {
|
||||||
directory.listFiles().orEmpty().forEach { file ->
|
directory.listFiles().orEmpty().also { it.sort() }.forEach { file ->
|
||||||
if (file.isDirectory) {
|
if (file.isDirectory) {
|
||||||
val newPath = "$path:${file.name}"
|
val newPath = "$path:${file.name}"
|
||||||
val buildFile = File(file, "build.gradle.kts")
|
val buildFile = File(file, "build.gradle.kts")
|
||||||
|
|
@ -104,6 +104,7 @@ fun DependencyHandlerScope.allFeaturesApi(rootDir: File) {
|
||||||
val featuresDir = File(rootDir, "features")
|
val featuresDir = File(rootDir, "features")
|
||||||
addImplementationProjects(featuresDir, ":features", "api")
|
addImplementationProjects(featuresDir, ":features", "api")
|
||||||
}
|
}
|
||||||
|
|
||||||
fun DependencyHandlerScope.allFeaturesImpl(rootDir: File) {
|
fun DependencyHandlerScope.allFeaturesImpl(rootDir: File) {
|
||||||
val featuresDir = File(rootDir, "features")
|
val featuresDir = File(rootDir, "features")
|
||||||
addImplementationProjects(featuresDir, ":features", "impl")
|
addImplementationProjects(featuresDir, ":features", "impl")
|
||||||
|
|
|
||||||
|
|
@ -56,7 +56,7 @@ include(":anvilcodegen")
|
||||||
include(":samples:minimal")
|
include(":samples:minimal")
|
||||||
|
|
||||||
fun includeProjects(directory: File, path: String, maxDepth: Int = 1) {
|
fun includeProjects(directory: File, path: String, maxDepth: Int = 1) {
|
||||||
directory.listFiles().orEmpty().forEach { file ->
|
directory.listFiles().orEmpty().also { it.sort() }.forEach { file ->
|
||||||
if (file.isDirectory) {
|
if (file.isDirectory) {
|
||||||
val newPath = "$path:${file.name}"
|
val newPath = "$path:${file.name}"
|
||||||
val buildFile = File(file, "build.gradle.kts")
|
val buildFile = File(file, "build.gradle.kts")
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue