This repository has been archived by the owner on Nov 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
settings.gradle
106 lines (102 loc) · 3.39 KB
/
settings.gradle
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
buildscript {
repositories {
mavenCentral() { metadataSources { mavenPom(); ignoreGradleMetadataRedirection() } }
gradlePluginPortal() { metadataSources { mavenPom(); ignoreGradleMetadataRedirection() } }
}
dependencies {
classpath 'com.palantir.gradle.jdks:gradle-jdks-settings:0.56.0'
}
}
plugins {
id "com.gradle.enterprise" version "3.12.6"
}
apply plugin: 'com.palantir.jdks.settings'
rootProject.name = 'atlasdb'
include ":atlasdb-api"
include ":atlasdb-autobatch"
include ":atlasdb-buggify"
include ":atlasdb-cassandra"
include ":atlasdb-cassandra-integration-tests"
include ":atlasdb-cassandra-multinode-tests"
include ":atlasdb-cli"
include ":atlasdb-cli-distribution"
include ":atlasdb-client"
include ":atlasdb-client-protobufs"
include ":atlasdb-commons"
include ":atlasdb-commons-api"
include ":atlasdb-config"
include ":atlasdb-conjure"
include ":atlasdb-console"
include ":atlasdb-console-distribution"
include ":atlasdb-container-test-utils"
include ":atlasdb-coordination-impl"
include ":atlasdb-dagger"
include ":atlasdb-dbkvs"
include ":atlasdb-dbkvs-tests"
include ":atlasdb-dbkvs-hikari"
include ":atlasdb-ete-test-utils"
include ":atlasdb-ete-tests"
include ":atlasdb-impl-shared"
include ":atlasdb-perf"
include ":atlasdb-processors"
include ":atlasdb-processors-tests"
include ":atlasdb-remoting-api"
include ":atlasdb-service"
include ":atlasdb-tests-shared"
include ":atlasdb-workload-server"
include ":atlasdb-workload-server-api"
include ":atlasdb-workload-server-distribution"
include ":atlasdb-workload-server-antithesis"
include ":commons-annotations"
include ":commons-api"
include ":commons-db"
include ":commons-executors"
include ":commons-executors-api"
include ":commons-proxy"
include ":cassandra-partitioner"
include ":examples:profile-client"
include ":examples:profile-client-protobufs"
include ":flake-extension"
include ":leader-election-api"
include ":leader-election-api-protobufs"
include ":leader-election-impl"
include ":lock-api"
include ":lock-api-objects"
include ":lock-conjure-api"
include ":lock-conjure-api:lock-conjure-api-undertow"
include ":lock-conjure-api:lock-conjure-api-jersey"
include ":lock-conjure-api:lock-conjure-api-dialogue"
include ":lock-conjure-api:lock-conjure-api-objects"
include ":lock-impl"
include ":timelock-agent"
include ":timelock-api"
include ":timelock-api:timelock-api-undertow"
include ":timelock-api:timelock-api-jersey"
include ":timelock-api:timelock-api-dialogue"
include ":timelock-api:timelock-api-objects"
include ":timelock-corruption-detection"
include ":timelock-corruption-detection:timelock-corruption-detection-undertow"
include ":timelock-corruption-detection:timelock-corruption-detection-jersey"
include ":timelock-corruption-detection:timelock-corruption-detection-dialogue"
include ":timelock-corruption-detection:timelock-corruption-detection-objects"
include ":timelock-impl"
include ":timelock-server"
include ":timelock-server-benchmark-client"
include ":timelock-server-benchmark-cluster"
include ":timelock-server-distribution"
include ":timestamp-api"
include ":timestamp-client"
include ":timestamp-impl"
boolean isCiServer = System.getenv().containsKey('CI')
buildCache {
local {
enabled = !isCiServer
}
}
gradleEnterprise {
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
uploadInBackground = !isCiServer
}
}