2021-11-28 21:49:27 +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
|
|
|
|
2021-12-26 07:29:57 +01:00
|
|
|
plugins { `kotlin-dsl` }
|
2021-11-14 06:57:44 +01:00
|
|
|
|
2023-12-16 17:04:40 +01:00
|
|
|
kotlin.jvmToolchain(17)
|
2021-12-22 17:17:19 +01:00
|
|
|
|
2022-06-05 00:26:37 +02:00
|
|
|
gradlePlugin {
|
|
|
|
plugins {
|
|
|
|
register("android-application") {
|
|
|
|
id = "com.github.android-password-store.android-application"
|
|
|
|
implementationClass = "app.passwordstore.gradle.ApplicationPlugin"
|
2022-12-01 21:27:02 +01:00
|
|
|
}
|
2022-06-05 00:26:37 +02:00
|
|
|
register("android-library") {
|
|
|
|
id = "com.github.android-password-store.android-library"
|
|
|
|
implementationClass = "app.passwordstore.gradle.LibraryPlugin"
|
2022-12-01 21:27:02 +01:00
|
|
|
}
|
2022-06-05 00:26:37 +02:00
|
|
|
register("crowdin") {
|
|
|
|
id = "com.github.android-password-store.crowdin-plugin"
|
|
|
|
implementationClass = "app.passwordstore.gradle.crowdin.CrowdinDownloadPlugin"
|
2022-12-01 21:27:02 +01:00
|
|
|
}
|
2022-06-30 18:03:59 +02:00
|
|
|
register("git-hooks") {
|
|
|
|
id = "com.github.android-password-store.git-hooks"
|
|
|
|
implementationClass = "app.passwordstore.gradle.GitHooksPlugin"
|
2022-12-01 21:27:02 +01:00
|
|
|
}
|
2022-06-05 00:26:37 +02:00
|
|
|
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"
|
|
|
|
}
|
2023-04-26 21:19:03 +02:00
|
|
|
register("kotlin-jvm-library") {
|
|
|
|
id = "com.github.android-password-store.kotlin-jvm-library"
|
|
|
|
implementationClass = "app.passwordstore.gradle.KotlinJVMLibrary"
|
2022-06-05 00:26:37 +02:00
|
|
|
}
|
2022-10-29 03:59:46 +02:00
|
|
|
register("ktfmt") {
|
|
|
|
id = "com.github.android-password-store.ktfmt"
|
|
|
|
implementationClass = "app.passwordstore.gradle.KtfmtPlugin"
|
|
|
|
}
|
2022-06-05 00:26:37 +02:00
|
|
|
register("published-android-library") {
|
|
|
|
id = "com.github.android-password-store.published-android-library"
|
|
|
|
implementationClass = "app.passwordstore.gradle.PublishedAndroidLibraryPlugin"
|
2022-12-01 21:27:02 +01:00
|
|
|
}
|
2022-06-30 18:03:59 +02:00
|
|
|
register("psl") {
|
2022-06-05 00:26:37 +02:00
|
|
|
id = "com.github.android-password-store.psl-plugin"
|
|
|
|
implementationClass = "app.passwordstore.gradle.psl.PublicSuffixListPlugin"
|
2022-12-01 21:27:02 +01:00
|
|
|
}
|
2022-06-30 18:03:59 +02:00
|
|
|
register("rename-artifacts") {
|
|
|
|
id = "com.github.android-password-store.rename-artifacts"
|
|
|
|
implementationClass = "app.passwordstore.gradle.RenameArtifactsPlugin"
|
2022-12-01 21:27:02 +01:00
|
|
|
}
|
2022-06-05 00:26:37 +02:00
|
|
|
register("sentry") {
|
|
|
|
id = "com.github.android-password-store.sentry"
|
|
|
|
implementationClass = "app.passwordstore.gradle.SentryPlugin"
|
2022-12-01 21:27:02 +01:00
|
|
|
}
|
2022-06-30 18:03:59 +02:00
|
|
|
register("versioning") {
|
|
|
|
id = "com.github.android-password-store.versioning-plugin"
|
2022-06-05 00:26:37 +02:00
|
|
|
implementationClass = "app.passwordstore.gradle.versioning.VersioningPlugin"
|
2022-12-01 21:27:02 +01:00
|
|
|
}
|
2022-06-05 00:26:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-14 06:57:44 +01:00
|
|
|
dependencies {
|
2023-02-27 16:55:37 +01:00
|
|
|
implementation(platform(libs.kotlin.bom))
|
2021-11-28 21:49:27 +01:00
|
|
|
implementation(libs.build.agp)
|
2022-10-29 03:59:46 +02:00
|
|
|
implementation(libs.build.diffutils)
|
|
|
|
implementation(libs.build.download)
|
2023-07-12 12:30:46 +02:00
|
|
|
implementation(libs.build.javapoet)
|
2021-11-14 07:40:38 +01:00
|
|
|
implementation(libs.build.kotlin)
|
2022-10-29 03:59:46 +02:00
|
|
|
implementation(libs.build.ktfmt)
|
2022-06-30 18:03:59 +02:00
|
|
|
implementation(libs.build.mavenpublish)
|
2022-07-16 21:25:12 +02:00
|
|
|
implementation(libs.build.metalava)
|
2023-03-26 15:30:38 +02:00
|
|
|
implementation(libs.build.moshi)
|
|
|
|
implementation(libs.build.moshi.kotlin)
|
2021-11-28 21:49:27 +01:00
|
|
|
implementation(libs.build.okhttp)
|
2022-07-07 10:58:45 +02:00
|
|
|
implementation(libs.build.r8)
|
2022-06-30 18:03:59 +02:00
|
|
|
implementation(libs.build.semver)
|
|
|
|
implementation(libs.build.sentry)
|
2023-06-15 10:28:31 +02:00
|
|
|
implementation(libs.kotlinx.coroutines.core)
|
2023-11-28 07:19:47 +01:00
|
|
|
|
|
|
|
// Expose the generated version catalog API to the plugin.
|
|
|
|
implementation(files(libs::class.java.superclass.protectionDomain.codeSource.location))
|
2021-11-14 06:57:44 +01:00
|
|
|
}
|