add projects directly instead of scanning for them

IntelliJ Idea cannot import projects unless they are listed in the
settings.gradle
This commit is contained in:
2024-05-05 10:27:49 +02:00
parent da210145e6
commit 77b99801e4

View File

@@ -1,7 +1,8 @@
// include all projects with a build.gradle
// (this does not support nested projects)
File srcDir = new File(".")
FileCollection collection = files { srcDir.listFiles() }
collection.filter{ new File(it, "build.gradle").isFile() }.each{ include it.getName() }
include("block-storage")
include("data-store")
include("pdb-api")
include("pdb-js")
include("pdb-plotting")
include("pdb-ui")
include("pdb-utils")
include("performanceDb")