-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
51 lines (46 loc) · 1.06 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
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
@Suppress("UnstableApiUsage")
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
@Suppress("UnstableApiUsage")
repositories {
google()
mavenCentral()
mavenLocal()
maven {
url = uri("https://maven.pkg.github.com/Pointyware/Kass")
credentials {
username = providers.gradleProperty("github.user").get()
password = providers.gradleProperty("github.token").get()
}
}
}
}
rootProject.name = "Timer"
include(
":core-entities",
":core-data",
":core-interactors",
)
include(":app-shared")
include(":app-android")
include(":app-browser")
//include(":app-ios")
include(":app-desktop")
include(
":core-ui"
)
include(
":feature-calendar",
":feature-metrics",
":feature-organizer",
":feature-tasks"
)
includeBuild("build-logic")