-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
121 lines (114 loc) · 5.56 KB
/
settings.gradle.kts
File metadata and controls
121 lines (114 loc) · 5.56 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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
rootProject.name = "sherlock"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
includeBuild("build-logic")
include(":api")
include(":api:api-common")
include(":api:api-coroutines")
include(":api:api-coroutines-connector")
include(":api:api-reactor")
include(":api:api-rxjava")
include(":api:api-sync")
include(":common")
include(":connectors")
include(":connectors:inmem")
include(":connectors:inmem:inmem-common")
include(":connectors:inmem:inmem-coroutines")
include(":connectors:inmem:inmem-reactor")
include(":connectors:inmem:inmem-rxjava")
include(":connectors:inmem:inmem-sync")
include(":connectors:mongo")
include(":connectors:mongo:mongo-common")
include(":connectors:mongo:mongo-coroutines")
include(":connectors:mongo:mongo-reactor")
include(":connectors:mongo:mongo-rxjava")
include(":connectors:mongo:mongo-sync")
include(":connectors:mongo:mongo-tests")
include(":connectors:sql")
include(":connectors:sql:sql-common")
include(":connectors:sql:sql-common-api")
include(":connectors:sql:sql-coroutines")
include(":connectors:sql:sql-reactor")
include(":connectors:sql:sql-rxjava")
include(":connectors:sql:sql-sync")
include(":connectors:sql:sql-tests")
include(":examples")
include(":examples:inmem-coroutines")
include(":examples:inmem-reactor")
include(":examples:inmem-rxjava")
include(":examples:inmem-sync")
include(":examples:mongo-coroutines")
include(":examples:mongo-reactor")
include(":examples:mongo-rxjava")
include(":examples:mongo-sync")
include(":examples:mysql-coroutines")
include(":examples:mysql-reactor")
include(":examples:mysql-rxjava")
include(":examples:mysql-sync")
include(":examples:postgres-coroutines")
include(":examples:postgres-reactor")
include(":examples:postgres-rxjava")
include(":examples:postgres-sync")
include(":tests")
// Alias node names so all are unique
// Fix for https://github.com/gradle/gradle/issues/847
project(":api:api-common").projectDir = file("./api/common")
project(":api:api-coroutines").projectDir = file("./api/coroutines")
project(":api:api-coroutines-connector").projectDir = file("./api/coroutines-connector")
project(":api:api-reactor").projectDir = file("./api/reactor")
project(":api:api-rxjava").projectDir = file("./api/rxjava")
project(":api:api-sync").projectDir = file("./api/sync")
project(":connectors:inmem:inmem-common").projectDir = file("./connectors/inmem/common")
project(":connectors:inmem:inmem-coroutines").projectDir = file("./connectors/inmem/coroutines")
project(":connectors:inmem:inmem-reactor").projectDir = file("./connectors/inmem/reactor")
project(":connectors:inmem:inmem-rxjava").projectDir = file("./connectors/inmem/rxjava")
project(":connectors:inmem:inmem-sync").projectDir = file("./connectors/inmem/sync")
project(":connectors:mongo:mongo-common").projectDir = file("./connectors/mongo/common")
project(":connectors:mongo:mongo-coroutines").projectDir = file("./connectors/mongo/coroutines")
project(":connectors:mongo:mongo-reactor").projectDir = file("./connectors/mongo/reactor")
project(":connectors:mongo:mongo-rxjava").projectDir = file("./connectors/mongo/rxjava")
project(":connectors:mongo:mongo-sync").projectDir = file("./connectors/mongo/sync")
project(":connectors:mongo:mongo-tests").projectDir = file("./connectors/mongo/tests")
project(":connectors:sql:sql-common").projectDir = file("./connectors/sql/common")
project(":connectors:sql:sql-common-api").projectDir = file("./connectors/sql/common-api")
project(":connectors:sql:sql-coroutines").projectDir = file("./connectors/sql/coroutines")
project(":connectors:sql:sql-reactor").projectDir = file("./connectors/sql/reactor")
project(":connectors:sql:sql-rxjava").projectDir = file("./connectors/sql/rxjava")
project(":connectors:sql:sql-sync").projectDir = file("./connectors/sql/sync")
project(":connectors:sql:sql-tests").projectDir = file("./connectors/sql/tests")
project(":examples:inmem-coroutines").projectDir = file("./examples/inmem-coroutines")
project(":examples:inmem-reactor").projectDir = file("./examples/inmem-reactor")
project(":examples:inmem-rxjava").projectDir = file("./examples/inmem-rxjava")
project(":examples:inmem-sync").projectDir = file("./examples/inmem-sync")
project(":examples:mongo-coroutines").projectDir = file("./examples/mongo-coroutines")
project(":examples:mongo-reactor").projectDir = file("./examples/mongo-reactor")
project(":examples:mongo-rxjava").projectDir = file("./examples/mongo-rxjava")
project(":examples:mongo-sync").projectDir = file("./examples/mongo-sync")
project(":examples:mysql-coroutines").projectDir = file("./examples/mysql-coroutines")
project(":examples:mysql-reactor").projectDir = file("./examples/mysql-reactor")
project(":examples:mysql-rxjava").projectDir = file("./examples/mysql-rxjava")
project(":examples:mysql-sync").projectDir = file("./examples/mysql-sync")
project(":examples:postgres-coroutines").projectDir = file("./examples/postgres-coroutines")
project(":examples:postgres-reactor").projectDir = file("./examples/postgres-reactor")
project(":examples:postgres-rxjava").projectDir = file("./examples/postgres-rxjava")
project(":examples:postgres-sync").projectDir = file("./examples/postgres-sync")
project(":tests").projectDir = file("./tests")
dependencyResolutionManagement {
@Suppress("UnstableApiUsage")
repositories {
mavenCentral()
}
}
plugins {
id("com.gradle.develocity") version ("3.19")
}
develocity {
buildScan {
termsOfUseUrl = "https://gradle.com/help/legal-terms-of-use"
termsOfUseAgree = "yes"
publishing.onlyIf { false }
if (!System.getenv("CI").isNullOrEmpty()) {
publishing.onlyIf { true }
tag("CI")
}
}
}