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.
21 lines
476 B
Kotlin
21 lines
476 B
Kotlin
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.1.1"
|
|
distributionType = Wrapper.DistributionType.ALL
|
|
}
|