mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 02:18:47 +00:00
26 lines
448 B
Kotlin
26 lines
448 B
Kotlin
pluginManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
rootProject.name = "Firezone App"
|
|
include(":app")
|
|
|
|
buildCache {
|
|
local {
|
|
isEnabled = true
|
|
directory = file("$rootDir/.gradle/build-cache")
|
|
}
|
|
}
|