forked from joreilly/Confetti
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
64 lines (61 loc) · 2.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
52
53
54
55
56
57
58
59
60
61
62
63
64
pluginManagement {
listOf(repositories, dependencyResolutionManagement.repositories).forEach {
it.apply {
mavenCentral()
google()
maven(url = "https://androidx.dev/storage/compose-compiler/repository")
maven(url = "https://maven.pkg.jetbrains.space/public/p/compose/dev")
gradlePluginPortal {
content {
}
}
maven {
url = uri("https://jitpack.io")
content {
includeGroup("com.github.QuickBirdEng.kotlin-snapshot-testing")
}
}
exclusiveContent {
forRepository {
maven {
url = uri("https://repo.repsy.io/mvn/mbonnin/default")
}
}
filter {
// Use the snapshots repository for Apollo 4.0.0-dev.*, but not for 3.x, which is a dependency of 4.0.0
includeVersionByRegex(
"com\\.apollographql\\.apollo3",
".+",
"4\\.0\\.0-dev.*"
)
}
}
}
}
resolutionStrategy {
eachPlugin {
when (requested.id.id) {
// Appengine plugin doesn't publish the marker
"com.google.cloud.tools.appengine" -> useModule("com.google.cloud.tools:appengine-gradle-plugin:${requested.version}")
}
}
}
}
rootProject.name = "Confetti"
include(":androidApp")
include(":androidBenchmark")
include(":androidTest")
include(":automotiveApp")
include(":common:car")
include(":shared")
include(":backend")
include(":backend:service-graphql")
include(":backend:datastore")
include(":backend:service-import")
include(":landing-page")
include(":wearApp")
include(":wearBenchmark")
include(":compose-desktop")
check(JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_17)) {
"This project needs to be run with Java 17 or higher (found: ${JavaVersion.current()})."
}