-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathsettings.gradle.kts
43 lines (36 loc) · 1009 Bytes
/
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
@file:Suppress("UnstableApiUsage")
rootProject.name = "dataframe"
// treated as a separate project with its own Kotlin version etc.
includeBuild("generator")
include("plugins:dataframe-gradle-plugin")
include("plugins:symbol-processor")
include("plugins:expressions-converter")
include("plugins:kotlin-dataframe")
include("tests")
include("dataframe-arrow")
include("dataframe-openapi")
include("dataframe-excel")
include("dataframe-jdbc")
include("core")
include("examples:idea-examples:titanic")
include("examples:idea-examples:movies")
include("examples:idea-examples:youtube")
include("examples:idea-examples:json")
val jupyterApiTCRepo: String by settings
dependencyResolutionManagement {
repositories {
mavenCentral()
maven(jupyterApiTCRepo)
}
}
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.5.0"
}
include("dataframe-excel")
include("core")