2021-11-28 21:24:29 +01:00
|
|
|
/*
|
|
|
|
* Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved.
|
|
|
|
* SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2021-12-22 17:17:19 +01:00
|
|
|
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
|
|
|
|
|
2021-12-26 07:29:57 +01:00
|
|
|
plugins { `kotlin-dsl` }
|
2021-11-28 21:24:29 +01:00
|
|
|
|
2021-12-23 13:22:17 +01:00
|
|
|
afterEvaluate {
|
|
|
|
tasks.withType<JavaCompile>().configureEach {
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_11.toString()
|
|
|
|
targetCompatibility = JavaVersion.VERSION_11.toString()
|
|
|
|
}
|
2021-12-22 17:17:19 +01:00
|
|
|
|
2021-12-23 13:22:17 +01:00
|
|
|
tasks.withType<KotlinCompile>().configureEach {
|
|
|
|
kotlinOptions { jvmTarget = JavaVersion.VERSION_11.toString() }
|
|
|
|
}
|
2021-12-22 17:17:19 +01:00
|
|
|
}
|
|
|
|
|
2021-11-28 21:24:29 +01:00
|
|
|
gradlePlugin {
|
|
|
|
plugins {
|
|
|
|
register("crowdin") {
|
|
|
|
id = "com.github.android-password-store.crowdin-plugin"
|
|
|
|
implementationClass = "crowdin.CrowdinDownloadPlugin"
|
|
|
|
}
|
|
|
|
register("psl") {
|
|
|
|
id = "com.github.android-password-store.psl-plugin"
|
|
|
|
implementationClass = "psl.PublicSuffixListPlugin"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation(libs.build.download)
|
|
|
|
implementation(libs.build.okhttp)
|
|
|
|
}
|