forked from openremote/openremote
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle
More file actions
21 lines (18 loc) · 752 Bytes
/
settings.gradle
File metadata and controls
21 lines (18 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
pluginManagement {
plugins {
id "com.cherryperry.gradle-file-encrypt" version "2.0.3"
id "org.jetbrains.gradle.plugin.idea-ext" version "1.1.3"
}
}
plugins {
id "com.cherryperry.gradle-file-encrypt" apply false
id "org.jetbrains.gradle.plugin.idea-ext" apply false
}
rootProject.name = "openremote"
// Include sub-projects dynamically, every directory with a build.gradle (and no .buildignore)
fileTree(dir: rootDir, include: "**/build.gradle", excludes: ["**/node_modules/**", "**/generic_app/**"])
.filter { it.parent != rootDir }
.filter { !file("${it.parent}/.buildignore").exists() }
.each {
include it.parent.replace(rootDir.canonicalPath, "").replace("\\", ":").replace("/", ":")
}