aboutsummaryrefslogtreecommitdiff
path: root/build-logic/automation-plugins/build.gradle.kts
diff options
context:
space:
mode:
Diffstat (limited to 'build-logic/automation-plugins/build.gradle.kts')
-rw-r--r--build-logic/automation-plugins/build.gradle.kts28
1 files changed, 27 insertions, 1 deletions
diff --git a/build-logic/automation-plugins/build.gradle.kts b/build-logic/automation-plugins/build.gradle.kts
index e28b0255..2375262a 100644
--- a/build-logic/automation-plugins/build.gradle.kts
+++ b/build-logic/automation-plugins/build.gradle.kts
@@ -1 +1,27 @@
-plugins { `kotlin-dsl` }
+/*
+ * Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved.
+ * SPDX-License-Identifier: GPL-3.0-only
+ */
+
+plugins {
+ `kotlin-dsl`
+ `kotlin-dsl-precompiled-script-plugins`
+}
+
+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)
+}