mirror of
https://github.com/BetterAndroid/Hikage.git
synced 2026-02-04 12:07:07 +08:00
27 lines
580 B
Kotlin
27 lines
580 B
Kotlin
plugins {
|
|
alias(libs.plugins.kotlin.jvm)
|
|
}
|
|
|
|
group = gropify.project.groupName
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
|
|
tasks.named<Jar>("jar") {
|
|
manifest {
|
|
attributes(
|
|
"Lint-Registry-V2" to gropify.project.hikage.core.lint.registry.v2.clazz
|
|
)
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly(libs.kotlin.stdlib)
|
|
compileOnly(libs.android.lint.api)
|
|
compileOnly(libs.android.lint.checks)
|
|
|
|
testImplementation(libs.android.lint)
|
|
testImplementation(libs.android.lint.tests)
|
|
} |