-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsettings.gradle
34 lines (34 loc) · 988 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
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
repositories {
mavenLocal {
content {
// Allow machine-local Maven repository for DkSDK Core group of artifacts
includeGroup "com.diskuv.dksdk.core"
}
}
}
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
mavenLocal {
content {
// Allow machine-local Maven repository for DkSDK FFI group of artifacts
includeGroup "com.diskuv.dksdk.ffi"
// Allow machine-local Maven repository for DkML JNR group of artifacts
includeGroup "com.diskuv.dkml.jnr"
}
}
}
}
rootProject.name = "SquirrelScout_Scouter"
include ':app'
include ':data'
include ':dkconfig'