-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
42 lines (37 loc) · 1.4 KB
/
settings.gradle.kts
File metadata and controls
42 lines (37 loc) · 1.4 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
35
36
37
38
39
40
41
42
rootProject.name = "dataframe"
// Enables our build-settings logic convention plugins for the root project,
// setting up all common logic and version- and convention catalogs.
pluginManagement {
includeBuild("./build-settings-logic")
}
plugins {
id("dfsettings.catalogs")
}
// Enables our build logic convention plugins for the root project,
// so they can be applied in child projects in their build.gradle.kts files.
includeBuild("./build-logic")
includeBuild("plugins/keywords-generator")
include("plugins:expressions-converter")
include("plugins:public-api-modifier")
include("samples")
include("dataframe-json")
include("dataframe-arrow")
include("dataframe-openapi")
include("dataframe-excel")
include("dataframe-jdbc")
include("dataframe-csv")
include("dataframe-jupyter")
include("dataframe-geo")
include("dataframe-geo-jupyter")
include("dataframe-openapi-generator")
include("core")
include("dataframe-compiler-plugin-core")
include("examples:idea-examples:titanic")
include("examples:idea-examples:movies")
include("examples:idea-examples:youtube")
include("examples:idea-examples:json")
include("examples:idea-examples:unsupported-data-sources:exposed")
include("examples:idea-examples:unsupported-data-sources:hibernate")
include("examples:idea-examples:unsupported-data-sources:spark")
include("examples:idea-examples:unsupported-data-sources:multik")
include("examples:idea-examples:spark-parquet-dataframe")