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
34 lines (30 loc) · 1.24 KB
/
settings.gradle
File metadata and controls
34 lines (30 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
pluginManagement {
resolutionStrategy {
eachPlugin {
if (requested.id.toString() == "io.openremote.com.cherryperry.gradle-file-encrypt") {
useModule("com.github.openremote:GradleFileEncrypt:$requested.version")
}
}
}
repositories {
gradlePluginPortal()
maven {
url = "https://jitpack.io"
}
}
}
plugins {
id 'cz.habarta.typescript-generator' version "$typescriptGeneratorVersion" apply false
id 'io.github.gradle-nexus.publish-plugin' version '2.0.0' apply false
id 'io.openremote.com.cherryperry.gradle-file-encrypt' version '2.1.0' apply false
id 'org.jetbrains.gradle.plugin.idea-ext' version '1.2' apply false
id 'pl.allegro.tech.build.axion-release' version '1.20.1' 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("/", ":")
}