-
Notifications
You must be signed in to change notification settings - Fork 369
/
settings.gradle.kts
68 lines (59 loc) · 1.26 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
@file:Suppress("UnstableApiUsage")
rootProject.name = "voice"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
google()
includeBuild("plugins")
}
}
dependencyResolutionManagement {
repositories {
google()
exclusiveContent {
forRepository {
maven(url = "https://jitpack.io")
}
filter {
includeGroupByRegex("com.github.PaulWoitaschek.*")
}
}
mavenCentral()
}
}
plugins {
id("com.gradle.develocity") version "3.18.2"
id("org.gradle.toolchains.foojay-resolver-convention") version ("0.8.0")
}
develocity {
buildScan {
termsOfUseUrl = "https://gradle.com/terms-of-service"
termsOfUseAgree = "yes"
}
}
include(":app")
include(":strings")
include(":common")
include(":bookmark")
include(":data")
include(":playback")
include(":ffmpeg")
include(":scanner")
include(":playbackScreen")
include(":sleepTimer")
include(":settings")
include(":search")
include(":cover")
include(":datastore")
include(":folderPicker")
include(":bookOverview")
include(":migration")
include(":scripts")
include(":logging:core")
include(":logging:debug")
include(":documentfile")
include(":onboarding")
include(":review:play")
include(":review:noop")