mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 22:17:03 +05:30
53 lines
1.4 KiB
Kotlin
53 lines
1.4 KiB
Kotlin
buildscript {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
maven {
|
|
url = uri("https://storage.googleapis.com/r8-releases/raw")
|
|
content { includeModule("com.android.tools", "r8") }
|
|
}
|
|
}
|
|
dependencies {
|
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.21")
|
|
classpath("com.android.tools.build:gradle:7.1.0-alpha06")
|
|
classpath("com.diffplug.spotless:spotless-plugin-gradle:5.14.2")
|
|
classpath("com.google.dagger:hilt-android-gradle-plugin:2.38.1")
|
|
classpath("com.android.tools:r8:3.1.13-dev")
|
|
}
|
|
}
|
|
|
|
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.27").googleStyle()
|
|
}
|
|
kotlinGradle {
|
|
target("*.gradle.kts")
|
|
ktfmt("0.27").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.1.1"
|
|
distributionSha256Sum = "9bb8bc05f562f2d42bdf1ba8db62f6b6fa1c3bf6c392228802cc7cb0578fe7e0"
|
|
}
|