keiyoushi-extensions-source/build.gradle.kts
stevenyomi 646334b6b2 [skip ci] Update Gradle Wrapper files (#594)
- Updated wrapper scripts to 8.3 with `./gradlew wrapper`
- Duped `gradle-wrapper.properties` in `buildSrc` to trick "Android Studio - Clean Project" into using the same version
2024-01-25 11:57:36 +05:00

22 lines
443 B
Plaintext

buildscript {
repositories {
mavenCentral()
google()
maven(url = "https://plugins.gradle.org/m2/")
}
dependencies {
classpath(libs.gradle.agp)
classpath(libs.gradle.kotlin)
classpath(libs.gradle.serialization)
classpath(libs.gradle.kotlinter)
}
}
allprojects {
repositories {
mavenCentral()
google()
maven(url = "https://jitpack.io")
}
}