mirror of
https://github.com/keiyoushi/extensions-source.git
synced 2024-11-22 10:22:47 +01:00
22 lines
443 B
Plaintext
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")
|
||
|
}
|
||
|
}
|