-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsettings.gradle.kts
39 lines (35 loc) · 936 Bytes
/
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
dependencyResolutionManagement {
versionCatalogs {
create("deps") {
from(files("deps.versions.toml"))
}
}
}
pluginManagement {
repositories {
gradlePluginPortal()
maven("https://jitpack.io")
}
resolutionStrategy {
eachPlugin {
if (requested.id.toString() == "com.arkivanov.gradle.setup") {
useModule("com.github.arkivanov:gradle-setup-plugin:4ae41e7b6a")
}
}
}
plugins {
id("com.arkivanov.gradle.setup")
}
}
if (!startParameter.projectProperties.containsKey("check_publication")) {
include(":utils-internal")
include(":lifecycle")
include(":lifecycle-coroutines")
include(":lifecycle-reaktive")
include(":state-keeper")
include(":state-keeper-benchmarks")
include(":instance-keeper")
include(":back-handler")
} else {
include(":tools:check-publication")
}