-
-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathsettings.gradle
More file actions
26 lines (22 loc) · 632 Bytes
/
Copy pathsettings.gradle
File metadata and controls
26 lines (22 loc) · 632 Bytes
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
import org.gradle.api.initialization.resolve.RepositoriesMode
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
// Auto-provisions the JDK 21 toolchain the unit tests require (Robolectric + SDK 36)
// so local and CI builds resolve it without manual JDK management.
plugins {
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.9.0'
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "Presently"
include ':app'