forked from home-assistant/android
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
32 lines (26 loc) · 796 Bytes
/
settings.gradle.kts
File metadata and controls
32 lines (26 loc) · 796 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
27
28
29
30
31
32
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")
}
}