home-assistant-android/build.gradle.kts

46 lines
976 B
Plaintext
Raw Normal View History

import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
id("org.jlleitschuh.gradle.ktlint") version "9.2.1"
}
buildscript {
repositories {
google()
jcenter()
maven(url = Config.Repository.fabric)
maven(url = Config.Repository.gradle)
}
dependencies {
classpath(Config.Plugin.android)
classpath(Config.Plugin.kotlin)
classpath(Config.Plugin.google)
classpath(Config.Plugin.appDistribution)
classpath(Config.Plugin.fabric)
classpath(Config.Plugin.ktlint)
}
}
allprojects {
repositories {
google()
jcenter()
maven(url = Config.Repository.lokalize)
}
tasks.withType<KotlinCompile>().configureEach {
println("Configuring $name in project ${project.name}...")
kotlinOptions {
jvmTarget = "1.8"
}
}
}
tasks.register("clean").configure {
delete("build")
}
ktlint {
android.set(true)
}