forked from google/android-fhir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
68 lines (50 loc) · 1.8 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
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-beta05"
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
}
}
}
// NECESSARY force of the Jackson to run generateSearchParams in the new version of HAPI (6.8)
buildscript {
dependencies {
classpath("com.fasterxml.jackson.core:jackson-core:2.16.0")
classpath("com.fasterxml.jackson.core:jackson-annotations:2.15.3")
classpath("com.fasterxml.jackson.core:jackson-databind:2.16.0")
classpath("com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.16.0")
classpath("com.fasterxml.jackson.module:jackson-module-jaxb-annotations:2.16.0")
classpath("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.16.0")
classpath("com.fasterxml.jackson.module:jackson-module-kotlin:2.16.0")
}
}
include(":catalog")
include(":common")
include(":contrib:barcode")
include(":contrib:locationwidget")
include(":datacapture")
include(":document")
include(":demo")
include(":engine")
include(":knowledge")
include(":workflow")
include(":workflow-testing")
include(":workflow:benchmark")
include(":engine:benchmark")