inital commit

This commit is contained in:
2016-12-04 10:41:37 +01:00
commit 256b278428
34 changed files with 2011 additions and 0 deletions

7
settings.gradle Normal file
View File

@@ -0,0 +1,7 @@
// 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() }