-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
settings.gradle.kts
50 lines (45 loc) · 1.23 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
import java.net.URI
pluginManagement {
includeBuild("build-logic")
repositories {
mavenLocal()
google()
gradlePluginPortal()
mavenCentral()
}
}
dependencyResolutionManagement {
repositories {
mavenLocal()
google()
mavenCentral()
maven {
url = uri("https://jitpack.io")
content {
includeModule("com.github.Dansoftowner", "jSystemThemeDetector")
// TODO: Delete when/if https://github.com/adrielcafe/lyricist/pull/45
// and https://github.com/adrielcafe/lyricist/pull/46 gets merged
includeModule("com.github.prof18", "lyricist")
}
}
}
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
}
rootProject.name = "FeedFlow"
include(":androidApp")
include(":shared")
include(":sharedUI")
include(":desktopApp")
include(":i18n")
include(":core")
include("database")
include(":feedSync:database")
include("feedSync:dropbox")
include("feedSync:icloud")
// includeBuild("../../Android/RSS-Parser") {
// dependencySubstitution {
// substitute(module("com.prof18.rssparser:rssparser")).using(project(":rssparser"))
// }
// }