We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1eae238 commit c6f641bCopy full SHA for c6f641b
settings.gradle
@@ -11,7 +11,8 @@ def module(String path) {
11
include(name)
12
project(":$name").projectDir = file(path)
13
}
14
-
+def prop = properties['build_snapshot_train']
15
+ext.build_snapshot_train = prop != null && prop != ""
16
// ---------------------------
17
18
include('benchmarks')
@@ -39,6 +40,8 @@ module('ui/kotlinx-coroutines-javafx')
39
40
module('ui/kotlinx-coroutines-swing')
41
42
module('js/js-stub')
-module('js/example-frontend-js')
43
+if (!build_snapshot_train) {
44
+ module('js/example-frontend-js')
45
+}
46
47
module('publication-validator')
0 commit comments