-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
58 lines (49 loc) · 1.71 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
52
53
54
55
56
57
58
@file:Suppress("UnstableApiUsage")
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
repositories {
// Google/Firebase/GMS/Androidx libraries
// Don't use exclusiveContent for androidx libraries so that snapshots work.
google {
content {
includeGroupByRegex("android.*")
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("org\\.chromium.*")
}
}
// For Gradle plugins only. Last because proxies to mavenCentral.
gradlePluginPortal()
}
// For local development.
//includeBuild("../fluxo-kmp-conf")
}
plugins {
// https://plugins.gradle.org/plugin/com.gradle.develocity
id("com.gradle.develocity") version "3.18.2"
}
dependencyResolutionManagement {
// Not supported in Kotlin Multiplatform plugin yet.
// repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
// Google/Firebase/GMS/Androidx libraries
// Don't use exclusiveContent for androidx libraries so that snapshots work.
google {
content {
includeGroupByRegex("android.*")
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("org\\.chromium.*")
}
}
mavenCentral()
maven(url = "https://www.jitpack.io") {
content {
includeGroupByRegex("com\\.github\\..*")
}
}
}
}
rootProject.name = "fluxo-io"
// On module update, don't forget to update '.github/workflows/build.yml'!
include(":fluxo-io-rad")