-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
35 lines (31 loc) · 955 Bytes
/
settings.gradle.kts
File metadata and controls
35 lines (31 loc) · 955 Bytes
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
rootProject.name = "backfila"
includeBuild("build-support") {
dependencySubstitution {
substitute(module("app.cash.backfila:client-sqldelight-gradle-plugin")).using(project(":client-sqldelight-gradle-plugin"))
}
}
include("backfila-embedded")
include("bom")
include("client")
include("client-base")
include("client-dynamodb")
include("client-dynamodb-v2")
include("client-jooq")
include("client-misk")
include("client-misk-hibernate")
include("client-s3")
include("client-sqldelight")
include("client-sqldelight-gradle-plugin")
include("client-sqldelight-test")
include("client-static")
include("client-testing")
include("service")
include("service-self-backfill")
// These are going to be deleted as they are replaced by miskless versions.
include("client-misk-dynamodb")
include("client-misk-jooq")
include("client-misk-static")
val localSettings = file("local.settings.gradle")
if (localSettings.exists()) {
apply(from = localSettings)
}