forked from readium/kotlin-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
81 lines (63 loc) · 2.28 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
69
70
71
72
73
74
75
76
77
78
79
80
81
/*
* Copyright 2021 Readium Foundation. All rights reserved.
* Use of this source code is governed by the BSD-style license
* available in the top-level LICENSE file of the project.
*/
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenLocal()
mavenCentral()
maven(url = "https://s3.amazonaws.com/repo.commonsware.com")
maven(url = "https://customers.pspdfkit.com/maven")
}
}
rootProject.name = "Readium"
include(":readium:adapters:pdfium:document")
project(":readium:adapters:pdfium:document")
.name = "readium-adapter-pdfium-document"
include(":readium:adapters:pdfium:navigator")
project(":readium:adapters:pdfium:navigator")
.name = "readium-adapter-pdfium-navigator"
include(":readium:adapters:pspdfkit:document")
project(":readium:adapters:pspdfkit:document")
.name = "readium-adapter-pspdfkit-document"
include(":readium:adapters:pspdfkit:navigator")
project(":readium:adapters:pspdfkit:navigator")
.name = "readium-adapter-pspdfkit-navigator"
include(":readium:lcp")
project(":readium:lcp")
.name = "readium-lcp"
include(":readium:navigator")
project(":readium:navigator")
.name = "readium-navigator"
include(":readium:navigators:common")
project(":readium:navigators:common")
.name = "readium-navigator-common"
include(":readium:navigators:web")
project(":readium:navigators:web")
.name = "readium-navigator-web"
include(":readium:navigators:media:common")
project(":readium:navigators:media:common")
.name = "readium-navigator-media-common"
include(":readium:navigators:media:audio")
project(":readium:navigators:media:audio")
.name = "readium-navigator-media-audio"
include(":readium:navigators:media:tts")
project(":readium:navigators:media:tts")
.name = "readium-navigator-media-tts"
include(":readium:adapters:exoplayer:audio")
project(":readium:adapters:exoplayer:audio")
.name = "readium-adapter-exoplayer-audio"
include(":readium:opds")
project(":readium:opds")
.name = "readium-opds"
include(":readium:shared")
project(":readium:shared")
.name = "readium-shared"
include(":readium:streamer")
project(":readium:streamer")
.name = "readium-streamer"
include("test-app")
// include(":readium:navigators:demo")