forked from AlmightyHak/extensions-source
22 lines
528 B
Text
22 lines
528 B
Text
|
buildscript {
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
google()
|
||
|
maven(url = "https://plugins.gradle.org/m2/")
|
||
|
}
|
||
|
dependencies {
|
||
|
classpath(libs.gradle.agp)
|
||
|
classpath(libs.gradle.kotlin)
|
||
|
classpath(libs.gradle.kotlin.serialization)
|
||
|
classpath(libs.gradle.kotlinter)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
allprojects {
|
||
|
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach {
|
||
|
kotlinOptions {
|
||
|
jvmTarget = JavaVersion.VERSION_1_8.toString()
|
||
|
}
|
||
|
}
|
||
|
}
|