SubwayTooter-Android-App/apng/build.gradle

26 lines
695 B
Groovy
Raw Normal View History

2023-01-15 06:04:37 +01:00
apply plugin: "java-library"
apply plugin: "kotlin"
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
compileKotlin {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
kotlinOptions {
jvmTarget = jvm_target
freeCompilerArgs += [
"-opt-in=kotlin.ExperimentalStdlibApi",
]
}
}
dependencies {
2023-01-15 06:04:37 +01:00
implementation fileTree(dir: "libs", include: ["*.jar"])
//noinspection DifferentStdlibGradleVersion
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
testImplementation "junit:junit:$junit_version"
}