2021-11-28 20:49:27 +00:00
|
|
|
/*
|
|
|
|
* Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved.
|
|
|
|
* SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2021-12-22 16:17:19 +00: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 06:29:57 +00:00
|
|
|
plugins { `kotlin-dsl` }
|
2021-11-14 05:57:44 +00:00
|
|
|
|
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-22 16:17:19 +00:00
|
|
|
|
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
|
|
|
}
|
2021-12-22 16:17:19 +00:00
|
|
|
}
|
|
|
|
|
2022-06-04 22:26:37 +00:00
|
|
|
gradlePlugin {
|
|
|
|
plugins {
|
|
|
|
register("binary-compatibility") {
|
|
|
|
id = "com.github.android-password-store.binary-compatibility"
|
|
|
|
implementationClass = "app.passwordstore.gradle.BinaryCompatibilityPlugin"
|
|
|
|
}
|
|
|
|
register("kotlin-android") {
|
|
|
|
id = "com.github.android-password-store.kotlin-android"
|
|
|
|
implementationClass = "app.passwordstore.gradle.KotlinAndroidPlugin"
|
|
|
|
}
|
|
|
|
register("kotlin-common") {
|
|
|
|
id = "com.github.android-password-store.kotlin-common"
|
|
|
|
implementationClass = "app.passwordstore.gradle.KotlinCommonPlugin"
|
|
|
|
}
|
|
|
|
register("kotlin-kapt") {
|
|
|
|
id = "com.github.android-password-store.kotlin-kapt"
|
|
|
|
implementationClass = "app.passwordstore.gradle.KotlinKaptPlugin"
|
|
|
|
}
|
|
|
|
register("kotlin-library") {
|
|
|
|
id = "com.github.android-password-store.kotlin-library"
|
|
|
|
implementationClass = "app.passwordstore.gradle.KotlinLibraryPlugin"
|
|
|
|
}
|
|
|
|
register("spotless") {
|
|
|
|
id = "com.github.android-password-store.spotless"
|
|
|
|
implementationClass = "app.passwordstore.gradle.SpotlessPlugin"
|
|
|
|
}
|
2022-06-30 16:03:59 +00:00
|
|
|
register("versions") {
|
|
|
|
id = "com.github.android-password-store.versions"
|
|
|
|
implementationClass = "app.passwordstore.gradle.DependencyUpdatesPlugin"
|
|
|
|
}
|
2022-06-04 22:26:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-14 05:57:44 +00:00
|
|
|
dependencies {
|
2021-11-28 20:49:27 +00:00
|
|
|
implementation(libs.build.agp)
|
2021-11-14 06:40:38 +00:00
|
|
|
implementation(libs.build.binarycompat)
|
|
|
|
implementation(libs.build.kotlin)
|
2022-07-07 08:58:45 +00:00
|
|
|
implementation(libs.build.r8)
|
2021-11-14 05:57:44 +00:00
|
|
|
implementation(libs.build.spotless)
|
2022-06-30 16:03:59 +00:00
|
|
|
implementation(libs.build.vcu)
|
|
|
|
implementation(libs.build.versions)
|
2021-11-14 05:57:44 +00:00
|
|
|
}
|