forked from google/android-fhir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
49 lines (35 loc) · 1.07 KB
/
settings.gradle.kts
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
import androidx.build.gradle.gcpbuildcache.GcpBuildCache
import androidx.build.gradle.gcpbuildcache.GcpBuildCacheServiceFactory
plugins {
id("com.gradle.enterprise") version ("3.10")
id("androidx.build.gradle.gcpbuildcache") version "1.0.0-beta01"
id("org.gradle.toolchains.foojay-resolver-convention") version ("0.5.0")
}
gradleEnterprise {
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
capture { isTaskInputFiles = true }
}
}
val kokoroRun = providers.environmentVariable("KOKORO_BUILD_ID").isPresent
if (kokoroRun == true) {
buildCache {
registerBuildCacheService(GcpBuildCache::class, GcpBuildCacheServiceFactory::class)
remote(GcpBuildCache::class) {
projectId = "android-fhir-build"
bucketName = "android-fhir-build-cache"
isPush = true
}
}
}
include(":benchmark")
include(":catalog")
include(":common")
include(":contrib:barcode")
include(":datacapture")
include(":demo")
include(":engine")
include(":knowledge")
include(":workflow")
include(":workflow-testing")