0
0
mirror of https://github.com/ankidroid/Anki-Android.git synced 2024-09-20 03:52:15 +02:00
Anki-Android/lint-rules/build.gradle.kts
lukstbit c96827ece2
Migrate lint-rules build file to kotlin dsl (#14531)
* Rename lint-rules/build.gradle to lint-rules/build.gradle.kts
* Use kotlin dsl in lint-rules/build.gradle.kts

In order to use the version properties defined in the root build file
the rootProject's extra properties container must be used.
2023-10-12 09:24:06 +03:00

31 lines
1.3 KiB
Plaintext

import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
id("kotlin")
}
tasks.withType(JavaCompile::class).configureEach {
sourceCompatibility = JavaVersion.VERSION_11.toString()
targetCompatibility = JavaVersion.VERSION_11.toString()
}
tasks.withType(KotlinCompile::class).all {
kotlinOptions {
// starting with AGP 7.4.0 we need to target JVM 11 bytecode
jvmTarget = JavaVersion.VERSION_11.toString()
}
}
dependencies {
compileOnly("com.android.tools.lint:lint-api:${rootProject.extra["lint_version"]}")
compileOnly("com.android.tools.lint:lint:${rootProject.extra["lint_version"]}")
testImplementation("org.hamcrest:hamcrest:${rootProject.extra["hamcrest_version"]}")
testImplementation("org.hamcrest:hamcrest-library:${rootProject.extra["hamcrest_version"]}")
testImplementation("org.junit.jupiter:junit-jupiter:${rootProject.extra["junit_version"]}")
testImplementation("org.junit.vintage:junit-vintage-engine:${rootProject.extra["junit_version"]}")
testImplementation("com.android.tools.lint:lint:${rootProject.extra["lint_version"]}")
testImplementation("com.android.tools.lint:lint-api:${rootProject.extra["lint_version"]}")
testImplementation("com.android.tools.lint:lint-tests:${rootProject.extra["lint_version"]}")
}