We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5177422 commit 6ef030bCopy full SHA for 6ef030b
settings.gradle.kts
@@ -1,7 +1,14 @@
1
rootProject.name = "scrapegraphai-java-root"
2
3
-include("scrapegraphai-java")
4
-include("scrapegraphai-java-client-okhttp")
5
-include("scrapegraphai-java-core")
6
-include("scrapegraphai-java-proguard-test")
7
-include("scrapegraphai-java-example")
+val projectNames = rootDir.listFiles()
+ ?.asSequence()
+ .orEmpty()
+ .filter { file ->
+ file.isDirectory &&
8
+ file.name.startsWith("scrapegraphai-java") &&
9
+ file.listFiles()?.asSequence().orEmpty().any { it.name == "build.gradle.kts" }
10
+ }
11
+ .map { it.name }
12
+ .toList()
13
+println("projects: $projectNames")
14
+projectNames.forEach { include(it) }
0 commit comments