-
-
Notifications
You must be signed in to change notification settings - Fork 402
/
settings.gradle.kts
34 lines (31 loc) · 900 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
// SPDX-License-Identifier: Apache-2.0
// Copyright 2024 Uwe Trottmann
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
resolutionStrategy {
eachPlugin {
if (requested.id.id == "com.google.cloud.tools.endpoints-framework-gradle-plugin") {
useModule("com.google.cloud.tools:endpoints-framework-gradle-plugin:2.1.0")
}
}
}
}
// https://docs.gradle.org/current/userguide/dependency_management.html#sub:centralized-repository-declaration
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
// For debugdrawer.
maven { url = uri("https://jitpack.io") }
}
}
include(":api")
include(":backend")
include(":billing")
include(":widgets")
include(":app")