-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsettings.gradle.kts
141 lines (126 loc) · 4 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
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
pluginManagement {
includeBuild("build-logic")
repositories {
maven(url = "https://repo1.maven.org/maven2/")
google()
mavenCentral()
gradlePluginPortal()
}
}
// Utility to get local properties from file
val properties = File(rootDir, "local.properties").inputStream().use {
java.util.Properties().apply { load(it) }
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
repositories {
google()
mavenCentral()
gradlePluginPortal()
maven(url = "https://oss.sonatype.org/content/repositories/snapshots/")
maven(url = "https://s3.amazonaws.com/repo.commonsware.com")
maven {
name = "SimMatcherGitHubPackages"
url = uri("https://maven.pkg.github.com/simprints/lib-android-simmatcher")
credentials {
username =
properties.getProperty("GITHUB_USERNAME", System.getenv("GITHUB_USERNAME"))
password = properties.getProperty("GITHUB_TOKEN", System.getenv("GITHUB_TOKEN"))
}
}
maven {
name = "RocWrapperGitHubPackages"
url = uri("https://maven.pkg.github.com/simprints/lib-roc-wrapper")
credentials {
username =
properties.getProperty("GITHUB_USERNAME", System.getenv("GITHUB_USERNAME"))
password = properties.getProperty("GITHUB_TOKEN", System.getenv("GITHUB_TOKEN"))
}
}
maven {
name = "NECWrapperGitHubPackages"
url = uri("https://maven.pkg.github.com/simprints/NEC-wrapper")
credentials {
username =
properties.getProperty("GITHUB_USERNAME", System.getenv("GITHUB_USERNAME"))
password = properties.getProperty("GITHUB_TOKEN", System.getenv("GITHUB_TOKEN"))
}
}
maven {
name = "SecugenWrapperGitHubPackages"
url = uri("https://maven.pkg.github.com/simprints/secugen-wrapper")
credentials {
username =
properties.getProperty("GITHUB_USERNAME", System.getenv("GITHUB_USERNAME"))
password = properties.getProperty("GITHUB_TOKEN", System.getenv("GITHUB_TOKEN"))
}
}
}
}
rootProject.name = "android-simprints-id"
// Main application module
include(":id")
// Fingerprint modality modules
include(
":fingerprint:connect",
":fingerprint:capture",
":fingerprint:infra:scanner",
":fingerprint:infra:scannermock",
":fingerprint:infra:base-bio-sdk",
":fingerprint:infra:bio-sdk",
":fingerprint:infra:simprints-bio-sdk",
":fingerprint:infra:nec-bio-sdk",
":fingerprint:infra:simafis-wrapper",
":fingerprint:infra:image-distortion-config",
)
// Face modality modules
include(
":face:capture",
":face:infra:base-bio-sdk",
":face:infra:bio-sdk-resolver",
":face:infra:roc-v1",
":face:infra:roc-v3",
)
// Feature modules
include(
":feature:orchestrator",
":feature:client-api",
":feature:login-check",
":feature:login",
":feature:fetch-subject",
":feature:select-subject",
":feature:enrol-last-biometric",
":feature:dashboard",
":feature:troubleshooting",
":feature:alert",
":feature:exit-form",
":feature:consent",
":feature:setup",
":feature:matcher",
":feature:validate-subject-pool",
":feature:select-subject-age-group",
)
// Infra modules
include(
":infra:core",
":infra:test-tools",
":infra:events",
":infra:config-store",
":infra:config-sync",
":infra:enrolment-records-store",
":infra:images",
":infra:license",
":infra:logging",
":infra:logging-persistent",
":infra:auth-store",
":infra:auth-logic",
":infra:network",
":infra:realm",
":infra:recent-user-activity",
":infra:resources",
":infra:security",
":infra:orchestrator-data",
":infra:ui-base",
":infra:sync",
":infra:event-sync",
)