main
Timo Bryant 2024-04-20 16:53:41 +02:00
parent 16a314fa8c
commit 03f09d4a54
4 changed files with 13 additions and 9 deletions

View File

@ -0,0 +1 @@
subprojects { }

View File

@ -1,15 +1,18 @@
/*
* This file was generated by the Gradle 'init' task.
*
* The settings file is used to specify which projects to include in your build.
* For more detailed information on multi-project builds, please refer to https://docs.gradle.org/8.7/userguide/multi_project_builds.html in the Gradle documentation.
* This project uses @Incubating APIs which are subject to change.
*/
plugins { plugins {
// Apply the foojay-resolver plugin to allow automatic download of JDKs
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0" id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
} }
fun includeDir(dir: String) {
val dirFile = file(dir)
(dirFile.listFiles() ?: emptyArray<File>())
.filter { file -> file.isDirectory }
.map { file -> file.relativeTo(rootDir) }
.map { file -> file.toString().replace('/', ':') }
.forEach { file ->
include(file)
}
}
rootProject.name = "xssak" rootProject.name = "xssak"
include("app") include("app")
includeDir("libraries")