mirror of https://github.com/tasks/tasks
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
557 B
Kotlin
25 lines
557 B
Kotlin
plugins {
|
|
id("com.google.devtools.ksp") version "1.9.10-1.0.13" apply false
|
|
}
|
|
|
|
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
google()
|
|
}
|
|
|
|
dependencies {
|
|
classpath(libs.gradle)
|
|
classpath(libs.google.services)
|
|
classpath(libs.firebase.crashlytics.gradle)
|
|
classpath(libs.kotlin.gradle)
|
|
classpath(libs.dagger.hilt.gradle)
|
|
classpath(libs.oss.licenses.plugin)
|
|
}
|
|
}
|
|
|
|
tasks.getByName<Wrapper>("wrapper") {
|
|
gradleVersion = "8.4"
|
|
distributionType = Wrapper.DistributionType.ALL
|
|
}
|