-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings.gradle.kts
50 lines (41 loc) · 1.16 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
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
google()
}
}
dependencyResolutionManagement {
versionCatalogs {
create("libs") {
from(files("$rootDir/org.thepalaceproject.android.platform/build_libraries.toml"))
}
}
/*
* The set of repositories used to resolve library dependencies. The order is significant!
*/
repositories {
mavenLocal()
mavenCentral()
google()
/*
* Allow access to the Sonatype snapshots repository.
*/
maven {
url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots/")
}
/*
* Allow access to Jitpack. This is used by, for example, Readium.
*/
maven {
url = uri("https://jitpack.io")
}
}
}
rootProject.name = "org.librarysimplified.r2"
include(":org.librarysimplified.r2.api")
include(":org.librarysimplified.r2.demo")
include(":org.librarysimplified.r2.tests")
include(":org.librarysimplified.r2.ui_thread")
include(":org.librarysimplified.r2.vanilla")
include(":org.librarysimplified.r2.views")