-
Notifications
You must be signed in to change notification settings - Fork 37
/
settings.gradle.kts
66 lines (51 loc) · 2.09 KB
/
settings.gradle.kts
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
58
59
60
61
62
63
64
65
66
/*
* Copyright (c) 2021. JetBrains s.r.o.
* Use of this source code is governed by the MIT license that can be found in the LICENSE file.
*/
pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
google()
}
plugins {
val kotlinVersion = extra["kotlin.version"] as String
val dokkaVersion = extra["dokka.version"] as String
val nexusStagingVersion = extra["nexusStaging.version"] as String
val nexusPublishVersion = extra["nexusPublish.version"] as String
val kspVersion = extra["ksp.version"] as String
val jupyterApiVersion = extra["jupyterApi.version"] as String
kotlin("multiplatform") version kotlinVersion
kotlin("jvm").version(kotlinVersion)
id("org.jetbrains.dokka") version dokkaVersion
id("io.codearte.nexus-staging") version nexusStagingVersion
id("io.github.gradle-nexus.publish-plugin") version nexusPublishVersion
id("com.google.devtools.ksp") version kspVersion
kotlin("jupyter.api") version jupyterApiVersion
}
}
rootProject.name = "lets-plot-kotlin"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
include("plot-api")
include("demo-common")
include("jvm-javafx")
include("jvm-batik")
include("browser")
include("js-frontend-app")
include("geotools")
include("geotools-batik")
include("dokka")
include("jupyter")
include("geotools-jupyter")
include("json")
project(":demo-common").projectDir = File("./demo/demo-common")
project(":jvm-javafx").projectDir = File("./demo/jvm-javafx")
project(":jvm-batik").projectDir = File("./demo/jvm-batik")
project(":browser").projectDir = File("./demo/browser")
project(":js-frontend-app").projectDir = File("./demo/js-frontend-app")
project(":geotools").projectDir = File("./toolkit/geotools")
project(":geotools-batik").projectDir = File("./demo/geotools-batik")
project(":dokka").projectDir = File("./docs/dokka")
project(":jupyter").projectDir = File("./toolkit/jupyter")
project(":geotools-jupyter").projectDir = File("./toolkit/geotools-jupyter")
project(":json").projectDir = File("./toolkit/json")