forked from JetBrains/lets-plot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle
57 lines (53 loc) · 1.62 KB
/
settings.gradle
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
pluginManagement {
plugins {
id "org.jetbrains.kotlin.multiplatform" version "$kotlin_version"
id "org.jetbrains.kotlin.js" version "$kotlin_version"
id "org.jetbrains.gradle.plugin.idea-ext" version "$idea_ext_version"
id "com.github.johnrengelman.shadow" version "5.1.0"
id "io.codearte.nexus-staging" version "0.30.0"
// id "com.moowork.node" version "1.3.1"
}
}
rootProject.name = "lets-plot"
include 'base-portable',
'base',
'gis',
'livemap',
'livemap-demo',
'plot-livemap',
'plot-livemap-stub',
'mapper-core',
'vis-svg-portable',
'vis-svg-mapper',
'vis-svg-mapper-jfx',
'vis-svg-mapper-batik',
'vis-canvas',
'plot-base-portable',
'plot-common-portable',
'plot-builder-portable',
'plot-builder',
'plot-config-portable',
'plot-config',
'plot-image-export',
'vis-demo-common',
'vis-demo-common-jfx',
'vis-demo-common-batik',
'vis-demo-svg-mapper',
'plot-demo',
'plot-demo-common',
'plot-export-demo',
'python-extension',
'python-package-build',
'js-package',
'jvm-package:jvm-publish-common',
'jvm-package:jvm-publish-jfx',
'jvm-package:jvm-publish-batik',
'jvm-package:jvm-publish-gis',
'test-common',
'vis-swing-common',
'vis-swing-batik',
'vis-swing-jfx'
/*
* Copyright (c) 2019. JetBrains s.r.o.
* Use of this source code is governed by the MIT license that can be found in the LICENSE file.
*/