/* * 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` } afterEvaluate { tasks.withType().configureEach { sourceCompatibility = JavaVersion.VERSION_11.toString() targetCompatibility = JavaVersion.VERSION_11.toString() } tasks.withType().configureEach { kotlinOptions { jvmTarget = JavaVersion.VERSION_11.toString() freeCompilerArgs = freeCompilerArgs + "-Xsam-conversions=class" } } } gradlePlugin { plugins { register("versioning") { id = "com.github.android-password-store.versioning-plugin" implementationClass = "dev.msfjarvis.aps.gradle.versioning.VersioningPlugin" } register("android-application") { id = "com.github.android-password-store.android-application" implementationClass = "dev.msfjarvis.aps.gradle.ApplicationPlugin" } register("android-library") { id = "com.github.android-password-store.android-library" implementationClass = "dev.msfjarvis.aps.gradle.LibraryPlugin" } register("published-android-library") { id = "com.github.android-password-store.published-android-library" implementationClass = "dev.msfjarvis.aps.gradle.PublishedAndroidLibraryPlugin" } register("rename-artifacts") { id = "com.github.android-password-store.rename-artifacts" implementationClass = "dev.msfjarvis.aps.gradle.RenameArtifactsPlugin" } register("sentry") { id = "com.github.android-password-store.sentry" implementationClass = "dev.msfjarvis.aps.gradle.SentryPlugin" } } } dependencies { implementation(libs.build.agp) implementation(libs.build.mavenpublish) implementation(libs.build.semver) implementation(libs.build.sentry) } configurations.all { resolutionStrategy.eachDependency { val overrideName = "GRADLE_VERSION_OVERRIDE_${requested.group.replace('.', '_')}_${requested.name}" val overridenVersion = System.getenv(overrideName) if (!overridenVersion.isNullOrEmpty()) { project.logger.lifecycle( "Overriding dependency ${requested.group}:${requested.name} to version $overridenVersion" ) useVersion(overridenVersion) } } }