home-assistant-android/settings.gradle.kts
Joris Pelgröm b2fccdf563
Update to Gradle 8.9, Reckon 0.18.3, optimized order (#4540)
- Update to latest Gradle using gradlew command
 - Update to latest Reckon to avoid build warning about future incompatibility
 - Optimize repositories as recommended on https://developer.android.com/build/optimize-your-build#gradle_plugin_portal
2024-07-31 20:19:57 +00:00

34 lines
759 B
Plaintext

include(":common", ":app", ":wear", ":automotive")
rootProject.name = "home-assistant-android"
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
plugins {
// So we can't reach the libs.plugins.* aliases from here so we need to declare them the old way...
id("org.ajoberstar.reckon.settings").version("0.18.3")
}
reckon {
setDefaultInferredScope("patch")
stages("beta", "final")
setScopeCalc { java.util.Optional.of(org.ajoberstar.reckon.core.Scope.PATCH) }
setStageCalc(calcStageFromProp())
setTagWriter { it.toString() }
}
dependencyResolutionManagement {
repositories {
mavenCentral()
google()
maven("https://jitpack.io")
}
}