Files
SilentDragonXAndroid/build-convention/build.gradle.kts
fekt 4adbc901a0 Initial commit
This initial commit includes HUSH specific changes starting at this commit:
d14637012c
2022-11-29 20:49:44 -05:00

24 lines
556 B
Kotlin

import org.jetbrains.kotlin.konan.properties.loadProperties
plugins {
`kotlin-dsl`
}
buildscript {
dependencyLocking {
lockAllConfigurations()
}
}
dependencyLocking {
lockAllConfigurations()
}
// Per conversation in the KotlinLang Slack, Gradle uses Java 8 compatibility internally
// for all build scripts.
// https://kotlinlang.slack.com/archives/C19FD9681/p1636632870122900?thread_ts=1636572288.117000&cid=C19FD9681
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}