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 94de167 commit a20c37fCopy full SHA for a20c37f
settings.gradle.kts
@@ -1,8 +1,14 @@
1
rootProject.name = "openai-java-root"
2
3
-include("openai-java")
4
-include("openai-java-client-okhttp")
5
-include("openai-java-core")
6
-include("openai-java-spring-boot-starter")
7
-include("openai-java-proguard-test")
8
-include("openai-java-example")
+val projectNames = rootDir.listFiles()
+ ?.asSequence()
+ .orEmpty()
+ .filter { file ->
+ file.isDirectory &&
+ file.name.startsWith("openai-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