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

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

76 lines
2.4 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 13:22:17 +01:00
afterEvaluate {
tasks.withType<JavaCompile>().configureEach {
sourceCompatibility = JavaVersion.VERSION_11.toString()
targetCompatibility = JavaVersion.VERSION_11.toString()
}
2021-12-23 13:22:17 +01:00
tasks.withType<KotlinCompile>().configureEach {
2022-05-02 22:18:16 +02:00
kotlinOptions {
jvmTarget = JavaVersion.VERSION_11.toString()
freeCompilerArgs = freeCompilerArgs + "-Xsam-conversions=class"
}
2021-12-23 13:22:17 +01:00
}
}
2021-11-28 21:53:06 +01:00
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"
2021-11-28 21:53:06 +01:00
}
}
}
dependencies {
implementation(libs.build.agp)
implementation(libs.build.mavenpublish)
2021-11-28 21:53:06 +01:00
implementation(libs.build.semver)
implementation(libs.build.sentry)
2021-11-28 21:53:06 +01:00
}
2022-05-25 14:29:04 +02:00
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"
2022-05-25 14:29:04 +02:00
)
useVersion(overridenVersion)
}
}
}