-
Notifications
You must be signed in to change notification settings - Fork 28
/
settings.gradle
39 lines (35 loc) · 986 Bytes
/
settings.gradle
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
/*
* Copyright (c) 2021 De Staat der Nederlanden, Ministerie van Volksgezondheid, Welzijn en Sport.
* Licensed under the EUROPEAN UNION PUBLIC LICENCE v. 1.2
*
* SPDX-License-Identifier: EUPL-1.2
*
*/
pluginManagement {
repositories {
google {
content {
includeGroup "com.google"
includeGroup "com.android"
includeGroupByRegex "com.google\\..*"
includeGroupByRegex "com.android\\..*"
includeGroupByRegex "androidx\\..*"
}
}
mavenCentral()
gradlePluginPortal()
}
resolutionStrategy {
eachPlugin {
// shot does not publish a Gradle plugin descriptor ;(
if (requested.id.id == "shot") {
useModule("com.karumi:shot:${requested.version}")
}
}
}
}
include ':design'
include ':shared'
include ':holder'
include ':appconfig'
rootProject.name = "CoronaTester"