Android-Password-Store/build-logic/automation-plugins/build.gradle.kts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
1.3 KiB
Text
Raw Normal View History

/*
* Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved.
* SPDX-License-Identifier: GPL-3.0-only
*/
import org.gradle.api.JavaVersion
import org.gradle.api.tasks.compile.JavaCompile
import org.gradle.kotlin.dsl.withType
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins { `kotlin-dsl` }
2021-12-23 12:22:17 +00:00
afterEvaluate {
tasks.withType<JavaCompile>().configureEach {
sourceCompatibility = JavaVersion.VERSION_11.toString()
targetCompatibility = JavaVersion.VERSION_11.toString()
}
2021-12-23 12:22:17 +00:00
tasks.withType<KotlinCompile>().configureEach {
2022-05-02 20:18:16 +00:00
kotlinOptions {
jvmTarget = JavaVersion.VERSION_11.toString()
freeCompilerArgs = freeCompilerArgs + "-Xsam-conversions=class"
}
2021-12-23 12:22:17 +00:00
}
}
gradlePlugin {
plugins {
register("crowdin") {
id = "com.github.android-password-store.crowdin-plugin"
implementationClass = "dev.msfjarvis.aps.gradle.crowdin.CrowdinDownloadPlugin"
}
register("psl") {
id = "com.github.android-password-store.psl-plugin"
implementationClass = "dev.msfjarvis.aps.gradle.psl.PublicSuffixListPlugin"
}
register("git-hooks") {
id = "com.github.android-password-store.git-hooks"
implementationClass = "dev.msfjarvis.aps.gradle.GitHooksPlugin"
}
}
}
dependencies {
implementation(libs.build.download)
implementation(libs.build.okhttp)
}