forked from kestra-io/kestra
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle
More file actions
56 lines (46 loc) · 1.24 KB
/
settings.gradle
File metadata and controls
56 lines (46 loc) · 1.24 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
plugins {
id("com.gradle.develocity") version "4.3.2"
id("com.gradle.common-custom-user-data-gradle-plugin") version "2.4.0"
}
def isCI = System.getenv('CI') != null
develocity {
server = "https://develocity.kestra.io"
buildScan {
uploadInBackground = !isCI
publishing.onlyIf {
it.authenticated
}
buildScanPublished { scan ->
if (isCI) {
def payload = [
timestamp: new Date().toString(),
taskNames: gradle.startParameter.taskNames,
buildScanId: scan.buildScanId,
buildScanUri: scan.buildScanUri.toString()
]
file("develocity-scan-output.ndjson") << groovy.json.JsonOutput.toJson(payload) + System.lineSeparator()
}
}
}
}
rootProject.name = "kestra"
include 'platform'
include 'cli'
include 'core'
include 'tests'
include 'runner-memory'
include 'repository-memory'
include 'storage-local'
include 'jdbc'
include 'jdbc-h2'
include 'jdbc-mysql'
include 'jdbc-postgres'
include 'webserver'
include 'executor'
include 'scheduler'
include 'worker'
include 'ui'
include 'model'
include 'processor'
include 'script'
include 'jmh-benchmarks'