forked from readium/kotlin-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
51 lines (45 loc) · 1.38 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
/*
* 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.
*/
// FIXME: Android Studio doesn't support the gradle/libs.versions.toml2 well yet.
//enableFeaturePreview("VERSION_CATALOGS")
pluginManagement {
repositories {
gradlePluginPortal()
google()
jcenter()
mavenLocal()
mavenCentral()
maven(url = "https://jitpack.io")
maven(url = "https://s3.amazonaws.com/repo.commonsware.com")
}
plugins {
id("com.android.application") version ("7.1.0")
id("com.android.library") version ("7.1.0")
id("org.jetbrains.kotlin.android") version ("1.6.10")
id("org.jetbrains.dokka") version ("1.6.10")
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
jcenter()
mavenLocal()
mavenCentral()
maven(url = "https://jitpack.io")
maven(url = "https://s3.amazonaws.com/repo.commonsware.com")
}
}
rootProject.name = "Readium"
include(":readium:shared")
include(":readium:streamer")
include(":readium:navigator")
include(":readium:navigator-media2")
include(":readium:opds")
include(":readium:lcp")
if (System.getenv("JITPACK") == null) {
include("test-app")
}