compose-lobsters/build.gradle.kts
Harsh Shandilya 71a20db5e7
build: bump AGP to 7.1.0-alpha01
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
2021-06-10 16:38:16 +05:30

49 lines
1.3 KiB
Kotlin

buildscript {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
dependencies {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.10")
classpath("com.android.tools.build:gradle:7.1.0-alpha01")
classpath("com.diffplug.spotless:spotless-plugin-gradle:5.12.5")
classpath("com.google.dagger:hilt-android-gradle-plugin:2.36")
}
}
group = "dev.msfjarvis.claw"
version = "1.0"
allprojects {
repositories {
mavenCentral()
maven { url = uri("https://maven.pkg.jetbrains.space/public/p/compose/dev") }
google()
}
apply(plugin = "com.diffplug.spotless")
configure<com.diffplug.gradle.spotless.SpotlessExtension> {
kotlin {
target("**/*.kt")
targetExclude("**/build/**")
ktfmt("0.25").googleStyle()
}
kotlinGradle {
target("*.gradle.kts")
ktfmt("0.25").googleStyle()
}
format("xml") {
target("**/*.xml")
targetExclude("**/build/**", ".idea/**")
prettier(mapOf("prettier" to "2.0.5", "@prettier/plugin-xml" to "0.13.0"))
.config(mapOf("parser" to "xml", "tabWidth" to 2))
}
}
}
tasks.withType<Wrapper> {
gradleVersion = "7.0.2"
distributionType = Wrapper.DistributionType.ALL
distributionSha256Sum = "13bf8d3cf8eeeb5770d19741a59bde9bd966dd78d17f1bbad787a05ef19d1c2d"
}