-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
54 lines (48 loc) · 1.35 KB
/
settings.gradle.kts
File metadata and controls
54 lines (48 loc) · 1.35 KB
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
pluginManagement {
includeBuild("build-logic")
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
//noinspection JcenterRepositoryObsolete
jcenter()
maven { setUrl("https://jitpack.io") }
}
}
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
rootProject.name = "NovelDokusha"
include(":app")
include(":scraper")
include(":strings")
include(":core")
include(":networking")
include(":coreui")
include(":data")
include(":tooling:local_database")
include(":tooling:epub_parser")
include(":tooling:text_translator:domain")
include(":tooling:text_translator:translator_nop")
include(":tooling:text_to_speech")
include(":tooling:backup_restore")
include(":tooling:backup_create")
include(":tooling:epub_importer")
include(":features:reader")
include(":features:chaptersList")
include(":features:globalSourceSearch")
include(":navigation")
include(":features:databaseExplorer")
include(":features:sourceExplorer")
include(":features:catalogExplorer")
include(":features:settings")
include(":features:libraryExplorer")
include(":tooling:application_workers")
include(":features:webview")
include(":tooling:local_source")
include(":tooling:algorithms")