2020-11-17 16:58:10 +00:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
gradlePluginPortal()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
2022-01-19 19:47:13 +00:00
|
|
|
resolutionStrategy {
|
|
|
|
eachPlugin {
|
|
|
|
if (requested.id.id.startsWith("com.google.cloud.tools.appengine")) {
|
|
|
|
useModule("com.google.cloud.tools:appengine-gradle-plugin:${requested.version}")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-11-17 16:58:10 +00:00
|
|
|
}
|
|
|
|
|
2020-04-26 08:11:37 +00:00
|
|
|
rootProject.name = "PeopleInSpace"
|
|
|
|
|
2020-11-20 13:21:05 +00:00
|
|
|
include(":app", ":common", ":compose-desktop")
|
2022-01-19 19:47:13 +00:00
|
|
|
include(":wearApp")
|
2020-11-20 13:21:05 +00:00
|
|
|
include(":web")
|
2021-05-04 20:31:53 +00:00
|
|
|
include(":compose-web")
|
2021-12-18 13:51:33 +00:00
|
|
|
include(":backend")
|
2022-01-19 19:47:13 +00:00
|
|
|
include(":graphql-server")
|