19 lines
278 B
Kotlin
19 lines
278 B
Kotlin
rootProject.name = "movienight"
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
|
|
}
|
|
|
|
buildCache {
|
|
local {
|
|
isEnabled = true
|
|
}
|
|
}
|