-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsettings.gradle
More file actions
40 lines (33 loc) · 978 Bytes
/
settings.gradle
File metadata and controls
40 lines (33 loc) · 978 Bytes
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
import org.gradle.api.initialization.resolve.RepositoriesMode
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
google()
mavenCentral()
}
}
// https://youtrack.jetbrains.com/issue/KTIJ-24981
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version("0.4.0")
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenLocal()
google()
mavenCentral()
}
}
rootProject.name = "android-fore"
include(':lib:fore-core')
include(':lib:fore-net')
include(':lib:fore-compose')
include(':lib:fore-test-fixtures')
include(':lib:fore-net-apollo')
include(':lib:fore-net-apollo-test-fixtures')
include(':app-examples:example-01-reactiveui',
':app-examples:example-02-coroutine',
':app-examples:example-03-ktor',
':app-examples:example-04-apollo',
':app-examples:example-06-compose')