-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsettings.gradle
More file actions
36 lines (35 loc) · 1.04 KB
/
settings.gradle
File metadata and controls
36 lines (35 loc) · 1.04 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
pluginManagement {
repositories {
mavenLocal() // For local development, use mavenLocal to resolve SNAPSHOT dependencies
mavenCentral()
gradlePluginPortal()
}
}
// Reserve 2 CPU cores for other work during parallel builds
gradle.startParameter.maxWorkerCount = Math.max(1, Runtime.runtime.availableProcessors() - 2)
rootProject.name = 'matrix'
include 'matrix-core'
include 'matrix-stats'
include 'matrix-csv'
include 'matrix-datasets'
include 'matrix-json'
include 'matrix-spreadsheet'
include 'matrix-charts'
include 'matrix-ggplot'
include 'matrix-sql'
include 'matrix-gsheets'
include 'matrix-parquet'
include 'matrix-bigquery'
include 'matrix-avro'
include 'matrix-xchart'
include 'matrix-tablesaw'
include 'matrix-arff'
include 'matrix-smile'
include 'matrix-examples:candles'
include 'matrix-examples:HousePrices'
include 'matrix-examples:LinearRegression'
include 'matrix-examples:DecisionTree'
include 'matrix-examples:whiskey'
include 'matrix-examples:XChartDemo'
include 'matrix-examples:AnalysisScenario1'
include 'matrix-groovy-ext'