2021-04-25 13:25:20 +00:00
|
|
|
/*
|
|
|
|
* This file was generated by the Gradle 'init' task.
|
|
|
|
*
|
|
|
|
* The settings file is used to specify which projects to include in your build.
|
|
|
|
*
|
|
|
|
* Detailed information about configuring a multi-project build in Gradle can be found
|
|
|
|
* in the user manual at https://docs.gradle.org/7.0/userguide/multi_project_builds.html
|
|
|
|
*/
|
|
|
|
|
|
|
|
rootProject.name = 'sysmon'
|
2021-05-07 10:39:55 +00:00
|
|
|
include('shared', 'client', 'server', 'plugins')
|
2021-05-01 12:44:55 +00:00
|
|
|
|
|
|
|
new File(rootDir, "plugins").listFiles().each {
|
|
|
|
|
|
|
|
if (it.directory && new File(it, 'build.gradle').exists()) {
|
|
|
|
include ":plugins:${it.name}"
|
|
|
|
}
|
|
|
|
|
2023-01-06 07:15:37 +00:00
|
|
|
}
|