forked from joreilly/Confetti
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
56 lines (51 loc) · 1.68 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
@file:Suppress("UnstableApiUsage")
pluginManagement {
listOf(repositories, dependencyResolutionManagement.repositories).forEach {
it.apply {
google {
content {
includeGroupByRegex(".*google.*")
includeGroupByRegex(".*android.*")
}
}
mavenCentral()
maven("https://maven.pkg.jetbrains.space/kotlin/p/wasm/experimental")
exclusiveContent {
forRepository { it.maven("https://storage.googleapis.com/apollo-snapshots/m2") }
filter {
includeVersionByRegex("com.apollographql.execution", ".*", ".*SNAPSHOT.*")
}
}
}
}
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(":automotiveApp")
include(":common:car")
include(":shared")
include(":backend")
include(":backend:service-graphql")
include(":backend:datastore")
include(":backend:service-import")
include(":backend:terraform")
include(":landing-page")
include(":wearApp")
include(":wearBenchmark")
include(":webApp")
include(":compose-desktop")
include(":compose-web")
include(":proto")
check(JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_17)) {
"This project needs to be run with Java 17 or higher (found: ${JavaVersion.current()})."
}
includeBuild("build-logic")