home-assistant-android/settings.gradle.kts
Justin Bassett 1a6c2b94d2
Initial work on migrating plugins to catalogs. (#3737)
* Initial work on migrating plugins to catalogs.

* Remove Enterprise Build profiling since we really don't use it.

* Use a common Java Version and sdk versions.

* ktlint

* Review comments.
2023-07-31 20:35:39 -04:00

33 lines
796 B
Plaintext

include(":common", ":app", ":wear", ":automotive")
rootProject.name = "home-assistant-android"
pluginManagement {
repositories {
gradlePluginPortal()
google()
}
}
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.0")
}
extensions.configure<org.ajoberstar.reckon.gradle.ReckonExtension> {
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")
}
}